Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Convert | 10155557 | 2114 days ago | IN | 0 ETH | 0.00200649 | ||||
| Convert | 10155495 | 2114 days ago | IN | 0 ETH | 0.00231447 | ||||
| Liquidate | 9924764 | 2150 days ago | IN | 0 ETH | 0.00142821 | ||||
| Transfer Ownersh... | 9424037 | 2227 days ago | IN | 0 ETH | 0.00036652 | ||||
| Accept Token Own... | 9417511 | 2228 days ago | IN | 0 ETH | 0.00009183 | ||||
| Set Conversion F... | 9417495 | 2228 days ago | IN | 0 ETH | 0.00009762 | ||||
| Add Reserve | 9417493 | 2228 days ago | IN | 0 ETH | 0.00025444 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x0f20Adc0...79CAEA19b The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
BancorConverter
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-01-09
*/
// File: contracts/token/interfaces/IERC20Token.sol
pragma solidity 0.4.26;
/*
ERC20 Standard Token interface
*/
contract IERC20Token {
// these functions aren't abstract since the compiler emits automatically generated getter functions as external
function name() public view returns (string) {this;}
function symbol() public view returns (string) {this;}
function decimals() public view returns (uint8) {this;}
function totalSupply() public view returns (uint256) {this;}
function balanceOf(address _owner) public view returns (uint256) {_owner; this;}
function allowance(address _owner, address _spender) public view returns (uint256) {_owner; _spender; this;}
function transfer(address _to, uint256 _value) public returns (bool success);
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
function approve(address _spender, uint256 _value) public returns (bool success);
}
// File: contracts/utility/interfaces/IWhitelist.sol
pragma solidity 0.4.26;
/*
Whitelist interface
*/
contract IWhitelist {
function isWhitelisted(address _address) public view returns (bool);
}
// File: contracts/converter/interfaces/IBancorConverter.sol
pragma solidity 0.4.26;
/*
Bancor Converter interface
*/
contract IBancorConverter {
function getReturn(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount) public view returns (uint256, uint256);
function convert2(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _minReturn, address _affiliateAccount, uint256 _affiliateFee) public returns (uint256);
function quickConvert2(IERC20Token[] _path, uint256 _amount, uint256 _minReturn, address _affiliateAccount, uint256 _affiliateFee) public payable returns (uint256);
function conversionWhitelist() public view returns (IWhitelist) {this;}
function conversionFee() public view returns (uint32) {this;}
function reserves(address _address) public view returns (uint256, uint32, bool, bool, bool) {_address; this;}
function getReserveBalance(IERC20Token _reserveToken) public view returns (uint256);
function reserveTokens(uint256 _index) public view returns (IERC20Token) {_index; this;}
// deprecated, backward compatibility
function change(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _minReturn) public returns (uint256);
function convert(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _minReturn) public returns (uint256);
function quickConvert(IERC20Token[] _path, uint256 _amount, uint256 _minReturn) public payable returns (uint256);
function connectors(address _address) public view returns (uint256, uint32, bool, bool, bool);
function getConnectorBalance(IERC20Token _connectorToken) public view returns (uint256);
function connectorTokens(uint256 _index) public view returns (IERC20Token);
function connectorTokenCount() public view returns (uint16);
}
// File: contracts/converter/interfaces/IBancorConverterUpgrader.sol
pragma solidity 0.4.26;
/*
Bancor Converter Upgrader interface
*/
contract IBancorConverterUpgrader {
function upgrade(bytes32 _version) public;
function upgrade(uint16 _version) public;
}
// File: contracts/converter/interfaces/IBancorFormula.sol
pragma solidity 0.4.26;
/*
Bancor Formula interface
*/
contract IBancorFormula {
function calculatePurchaseReturn(uint256 _supply, uint256 _reserveBalance, uint32 _reserveRatio, uint256 _depositAmount) public view returns (uint256);
function calculateSaleReturn(uint256 _supply, uint256 _reserveBalance, uint32 _reserveRatio, uint256 _sellAmount) public view returns (uint256);
function calculateCrossReserveReturn(uint256 _fromReserveBalance, uint32 _fromReserveRatio, uint256 _toReserveBalance, uint32 _toReserveRatio, uint256 _amount) public view returns (uint256);
function calculateFundCost(uint256 _supply, uint256 _reserveBalance, uint32 _totalRatio, uint256 _amount) public view returns (uint256);
function calculateLiquidateReturn(uint256 _supply, uint256 _reserveBalance, uint32 _totalRatio, uint256 _amount) public view returns (uint256);
// deprecated, backward compatibility
function calculateCrossConnectorReturn(uint256 _fromConnectorBalance, uint32 _fromConnectorWeight, uint256 _toConnectorBalance, uint32 _toConnectorWeight, uint256 _amount) public view returns (uint256);
}
// File: contracts/IBancorNetwork.sol
pragma solidity 0.4.26;
/*
Bancor Network interface
*/
contract IBancorNetwork {
function convert2(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _affiliateAccount,
uint256 _affiliateFee
) public payable returns (uint256);
function claimAndConvert2(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _affiliateAccount,
uint256 _affiliateFee
) public returns (uint256);
function convertFor2(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for,
address _affiliateAccount,
uint256 _affiliateFee
) public payable returns (uint256);
function claimAndConvertFor2(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for,
address _affiliateAccount,
uint256 _affiliateFee
) public returns (uint256);
function convertForPrioritized4(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for,
uint256[] memory _signature,
address _affiliateAccount,
uint256 _affiliateFee
) public payable returns (uint256);
// deprecated, backward compatibility
function convert(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn
) public payable returns (uint256);
// deprecated, backward compatibility
function claimAndConvert(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn
) public returns (uint256);
// deprecated, backward compatibility
function convertFor(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for
) public payable returns (uint256);
// deprecated, backward compatibility
function claimAndConvertFor(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for
) public returns (uint256);
// deprecated, backward compatibility
function convertForPrioritized3(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for,
uint256 _customVal,
uint256 _block,
uint8 _v,
bytes32 _r,
bytes32 _s
) public payable returns (uint256);
// deprecated, backward compatibility
function convertForPrioritized2(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for,
uint256 _block,
uint8 _v,
bytes32 _r,
bytes32 _s
) public payable returns (uint256);
// deprecated, backward compatibility
function convertForPrioritized(
IERC20Token[] _path,
uint256 _amount,
uint256 _minReturn,
address _for,
uint256 _block,
uint256 _nonce,
uint8 _v,
bytes32 _r,
bytes32 _s
) public payable returns (uint256);
}
// File: contracts/FeatureIds.sol
pragma solidity 0.4.26;
/**
* @dev Id definitions for bancor contract features
*
* Can be used to query the ContractFeatures contract to check whether a certain feature is supported by a contract
*/
contract FeatureIds {
// converter features
uint256 public constant CONVERTER_CONVERSION_WHITELIST = 1 << 0;
}
// File: contracts/utility/interfaces/IOwned.sol
pragma solidity 0.4.26;
/*
Owned contract interface
*/
contract IOwned {
// this function isn't abstract since the compiler emits automatically generated getter functions as external
function owner() public view returns (address) {this;}
function transferOwnership(address _newOwner) public;
function acceptOwnership() public;
}
// File: contracts/utility/Owned.sol
pragma solidity 0.4.26;
/**
* @dev Provides support and utilities for contract ownership
*/
contract Owned is IOwned {
address public owner;
address public newOwner;
/**
* @dev triggered when the owner is updated
*
* @param _prevOwner previous owner
* @param _newOwner new owner
*/
event OwnerUpdate(address indexed _prevOwner, address indexed _newOwner);
/**
* @dev initializes a new Owned instance
*/
constructor() public {
owner = msg.sender;
}
// allows execution by the owner only
modifier ownerOnly {
require(msg.sender == owner);
_;
}
/**
* @dev allows transferring the contract ownership
* the new owner still needs to accept the transfer
* can only be called by the contract owner
*
* @param _newOwner new contract owner
*/
function transferOwnership(address _newOwner) public ownerOnly {
require(_newOwner != owner);
newOwner = _newOwner;
}
/**
* @dev used by a new owner to accept an ownership transfer
*/
function acceptOwnership() public {
require(msg.sender == newOwner);
emit OwnerUpdate(owner, newOwner);
owner = newOwner;
newOwner = address(0);
}
}
// File: contracts/utility/Managed.sol
pragma solidity 0.4.26;
/**
* @dev Provides support and utilities for contract management
* Note that a managed contract must also have an owner
*/
contract Managed is Owned {
address public manager;
address public newManager;
/**
* @dev triggered when the manager is updated
*
* @param _prevManager previous manager
* @param _newManager new manager
*/
event ManagerUpdate(address indexed _prevManager, address indexed _newManager);
/**
* @dev initializes a new Managed instance
*/
constructor() public {
manager = msg.sender;
}
// allows execution by the manager only
modifier managerOnly {
assert(msg.sender == manager);
_;
}
// allows execution by either the owner or the manager only
modifier ownerOrManagerOnly {
require(msg.sender == owner || msg.sender == manager);
_;
}
/**
* @dev allows transferring the contract management
* the new manager still needs to accept the transfer
* can only be called by the contract manager
*
* @param _newManager new contract manager
*/
function transferManagement(address _newManager) public ownerOrManagerOnly {
require(_newManager != manager);
newManager = _newManager;
}
/**
* @dev used by a new manager to accept a management transfer
*/
function acceptManagement() public {
require(msg.sender == newManager);
emit ManagerUpdate(manager, newManager);
manager = newManager;
newManager = address(0);
}
}
// File: contracts/utility/SafeMath.sol
pragma solidity 0.4.26;
/**
* @dev Library for basic math operations with overflow/underflow protection
*/
library SafeMath {
/**
* @dev returns the sum of _x and _y, reverts if the calculation overflows
*
* @param _x value 1
* @param _y value 2
*
* @return sum
*/
function add(uint256 _x, uint256 _y) internal pure returns (uint256) {
uint256 z = _x + _y;
require(z >= _x);
return z;
}
/**
* @dev returns the difference of _x minus _y, reverts if the calculation underflows
*
* @param _x minuend
* @param _y subtrahend
*
* @return difference
*/
function sub(uint256 _x, uint256 _y) internal pure returns (uint256) {
require(_x >= _y);
return _x - _y;
}
/**
* @dev returns the product of multiplying _x by _y, reverts if the calculation overflows
*
* @param _x factor 1
* @param _y factor 2
*
* @return product
*/
function mul(uint256 _x, uint256 _y) internal pure returns (uint256) {
// gas optimization
if (_x == 0)
return 0;
uint256 z = _x * _y;
require(z / _x == _y);
return z;
}
/**
* ev Integer division of two numbers truncating the quotient, reverts on division by zero.
*
* aram _x dividend
* aram _y divisor
*
* eturn quotient
*/
function div(uint256 _x, uint256 _y) internal pure returns (uint256) {
require(_y > 0);
uint256 c = _x / _y;
return c;
}
}
// File: contracts/utility/Utils.sol
pragma solidity 0.4.26;
/**
* @dev Utilities & Common Modifiers
*/
contract Utils {
/**
* constructor
*/
constructor() public {
}
// verifies that an amount is greater than zero
modifier greaterThanZero(uint256 _amount) {
require(_amount > 0);
_;
}
// validates an address - currently only checks that it isn't null
modifier validAddress(address _address) {
require(_address != address(0));
_;
}
// verifies that the address is different than this contract address
modifier notThis(address _address) {
require(_address != address(this));
_;
}
}
// File: contracts/utility/interfaces/IContractRegistry.sol
pragma solidity 0.4.26;
/*
Contract Registry interface
*/
contract IContractRegistry {
function addressOf(bytes32 _contractName) public view returns (address);
// deprecated, backward compatibility
function getAddress(bytes32 _contractName) public view returns (address);
}
// File: contracts/utility/ContractRegistryClient.sol
pragma solidity 0.4.26;
/**
* @dev Base contract for ContractRegistry clients
*/
contract ContractRegistryClient is Owned, Utils {
bytes32 internal constant CONTRACT_FEATURES = "ContractFeatures";
bytes32 internal constant CONTRACT_REGISTRY = "ContractRegistry";
bytes32 internal constant BANCOR_NETWORK = "BancorNetwork";
bytes32 internal constant BANCOR_FORMULA = "BancorFormula";
bytes32 internal constant BANCOR_GAS_PRICE_LIMIT = "BancorGasPriceLimit";
bytes32 internal constant BANCOR_CONVERTER_FACTORY = "BancorConverterFactory";
bytes32 internal constant BANCOR_CONVERTER_UPGRADER = "BancorConverterUpgrader";
bytes32 internal constant BANCOR_CONVERTER_REGISTRY = "BancorConverterRegistry";
bytes32 internal constant BANCOR_CONVERTER_REGISTRY_DATA = "BancorConverterRegistryData";
bytes32 internal constant BNT_TOKEN = "BNTToken";
bytes32 internal constant BANCOR_X = "BancorX";
bytes32 internal constant BANCOR_X_UPGRADER = "BancorXUpgrader";
IContractRegistry public registry; // address of the current contract-registry
IContractRegistry public prevRegistry; // address of the previous contract-registry
bool public adminOnly; // only an administrator can update the contract-registry
/**
* @dev verifies that the caller is mapped to the given contract name
*
* @param _contractName contract name
*/
modifier only(bytes32 _contractName) {
require(msg.sender == addressOf(_contractName));
_;
}
/**
* @dev initializes a new ContractRegistryClient instance
*
* @param _registry address of a contract-registry contract
*/
constructor(IContractRegistry _registry) internal validAddress(_registry) {
registry = IContractRegistry(_registry);
prevRegistry = IContractRegistry(_registry);
}
/**
* @dev updates to the new contract-registry
*/
function updateRegistry() public {
// verify that this function is permitted
require(!adminOnly || isAdmin());
// get the new contract-registry
address newRegistry = addressOf(CONTRACT_REGISTRY);
// verify that the new contract-registry is different and not zero
require(newRegistry != address(registry) && newRegistry != address(0));
// verify that the new contract-registry is pointing to a non-zero contract-registry
require(IContractRegistry(newRegistry).addressOf(CONTRACT_REGISTRY) != address(0));
// save a backup of the current contract-registry before replacing it
prevRegistry = registry;
// replace the current contract-registry with the new contract-registry
registry = IContractRegistry(newRegistry);
}
/**
* @dev restores the previous contract-registry
*/
function restoreRegistry() public {
// verify that this function is permitted
require(isAdmin());
// restore the previous contract-registry
registry = prevRegistry;
}
/**
* @dev restricts the permission to update the contract-registry
*
* @param _adminOnly indicates whether or not permission is restricted to administrator only
*/
function restrictRegistryUpdate(bool _adminOnly) public {
// verify that this function is permitted
require(adminOnly != _adminOnly && isAdmin());
// change the permission to update the contract-registry
adminOnly = _adminOnly;
}
/**
* @dev returns whether or not the caller is an administrator
*/
function isAdmin() internal view returns (bool) {
return msg.sender == owner;
}
/**
* @dev returns the address associated with the given contract name
*
* @param _contractName contract name
*
* @return contract address
*/
function addressOf(bytes32 _contractName) internal view returns (address) {
return registry.addressOf(_contractName);
}
}
// File: contracts/utility/interfaces/IContractFeatures.sol
pragma solidity 0.4.26;
/*
Contract Features interface
*/
contract IContractFeatures {
function isSupported(address _contract, uint256 _features) public view returns (bool);
function enableFeatures(uint256 _features, bool _enable) public;
}
// File: contracts/utility/interfaces/IAddressList.sol
pragma solidity 0.4.26;
/*
Address list interface
*/
contract IAddressList {
mapping (address => bool) public listedAddresses;
}
// File: contracts/token/interfaces/ISmartToken.sol
pragma solidity 0.4.26;
/*
Smart Token interface
*/
contract ISmartToken is IOwned, IERC20Token {
function disableTransfers(bool _disable) public;
function issue(address _to, uint256 _amount) public;
function destroy(address _from, uint256 _amount) public;
}
// File: contracts/token/interfaces/ISmartTokenController.sol
pragma solidity 0.4.26;
/*
Smart Token Controller interface
*/
contract ISmartTokenController {
function claimTokens(address _from, uint256 _amount) public;
function token() public view returns (ISmartToken) {this;}
}
// File: contracts/utility/interfaces/ITokenHolder.sol
pragma solidity 0.4.26;
/*
Token Holder interface
*/
contract ITokenHolder is IOwned {
function withdrawTokens(IERC20Token _token, address _to, uint256 _amount) public;
}
// File: contracts/token/interfaces/INonStandardERC20.sol
pragma solidity 0.4.26;
/*
ERC20 Standard Token interface which doesn't return true/false for transfer, transferFrom and approve
*/
contract INonStandardERC20 {
// these functions aren't abstract since the compiler emits automatically generated getter functions as external
function name() public view returns (string) {this;}
function symbol() public view returns (string) {this;}
function decimals() public view returns (uint8) {this;}
function totalSupply() public view returns (uint256) {this;}
function balanceOf(address _owner) public view returns (uint256) {_owner; this;}
function allowance(address _owner, address _spender) public view returns (uint256) {_owner; _spender; this;}
function transfer(address _to, uint256 _value) public;
function transferFrom(address _from, address _to, uint256 _value) public;
function approve(address _spender, uint256 _value) public;
}
// File: contracts/utility/TokenHolder.sol
pragma solidity 0.4.26;
/**
* @dev We consider every contract to be a 'token holder' since it's currently not possible
* for a contract to deny receiving tokens.
*
* The TokenHolder's contract sole purpose is to provide a safety mechanism that allows
* the owner to send tokens that were sent to the contract by mistake back to their sender.
*
* Note that we use the non standard ERC-20 interface which has no return value for transfer
* in order to support both non standard as well as standard token contracts.
* see https://github.com/ethereum/solidity/issues/4116
*/
contract TokenHolder is ITokenHolder, Owned, Utils {
/**
* @dev initializes a new TokenHolder instance
*/
constructor() public {
}
/**
* @dev withdraws tokens held by the contract and sends them to an account
* can only be called by the owner
*
* @param _token ERC20 token contract address
* @param _to account to receive the new amount
* @param _amount amount to withdraw
*/
function withdrawTokens(IERC20Token _token, address _to, uint256 _amount)
public
ownerOnly
validAddress(_token)
validAddress(_to)
notThis(_to)
{
INonStandardERC20(_token).transfer(_to, _amount);
}
}
// File: contracts/token/SmartTokenController.sol
pragma solidity 0.4.26;
/**
* @dev The smart token controller is an upgradable part of the smart token that allows
* more functionality as well as fixes for bugs/exploits.
* Once it accepts ownership of the token, it becomes the token's sole controller
* that can execute any of its functions.
*
* To upgrade the controller, ownership must be transferred to a new controller, along with
* any relevant data.
*
* The smart token must be set on construction and cannot be changed afterwards.
* Wrappers are provided (as opposed to a single 'execute' function) for each of the token's functions, for easier access.
*
* Note that the controller can transfer token ownership to a new controller that
* doesn't allow executing any function on the token, for a trustless solution.
* Doing that will also remove the owner's ability to upgrade the controller.
*/
contract SmartTokenController is ISmartTokenController, TokenHolder {
ISmartToken public token; // Smart Token contract
address public bancorX; // BancorX contract
/**
* @dev initializes a new SmartTokenController instance
*
* @param _token smart token governed by the controller
*/
constructor(ISmartToken _token)
public
validAddress(_token)
{
token = _token;
}
// ensures that the controller is the token's owner
modifier active() {
require(token.owner() == address(this));
_;
}
// ensures that the controller is not the token's owner
modifier inactive() {
require(token.owner() != address(this));
_;
}
/**
* @dev allows transferring the token ownership
* the new owner needs to accept the transfer
* can only be called by the contract owner
*
* @param _newOwner new token owner
*/
function transferTokenOwnership(address _newOwner) public ownerOnly {
token.transferOwnership(_newOwner);
}
/**
* @dev used by a new owner to accept a token ownership transfer
* can only be called by the contract owner
*/
function acceptTokenOwnership() public ownerOnly {
token.acceptOwnership();
}
/**
* @dev withdraws tokens held by the controller and sends them to an account
* can only be called by the owner
*
* @param _token ERC20 token contract address
* @param _to account to receive the new amount
* @param _amount amount to withdraw
*/
function withdrawFromToken(IERC20Token _token, address _to, uint256 _amount) public ownerOnly {
ITokenHolder(token).withdrawTokens(_token, _to, _amount);
}
/**
* @dev allows the associated BancorX contract to claim tokens from any address (so that users
* dont have to first give allowance when calling BancorX)
*
* @param _from address to claim the tokens from
* @param _amount the amount of tokens to claim
*/
function claimTokens(address _from, uint256 _amount) public {
// only the associated BancorX contract may call this method
require(msg.sender == bancorX);
// destroy the tokens belonging to _from, and issue the same amount to bancorX
token.destroy(_from, _amount);
token.issue(msg.sender, _amount);
}
/**
* @dev allows the owner to set the associated BancorX contract
* @param _bancorX BancorX contract
*/
function setBancorX(address _bancorX) public ownerOnly {
bancorX = _bancorX;
}
}
// File: contracts/token/interfaces/IEtherToken.sol
pragma solidity 0.4.26;
/*
Ether Token interface
*/
contract IEtherToken is ITokenHolder, IERC20Token {
function deposit() public payable;
function withdraw(uint256 _amount) public;
function withdrawTo(address _to, uint256 _amount) public;
}
// File: contracts/bancorx/interfaces/IBancorX.sol
pragma solidity 0.4.26;
contract IBancorX {
function xTransfer(bytes32 _toBlockchain, bytes32 _to, uint256 _amount, uint256 _id) public;
function getXTransferAmount(uint256 _xTransferId, address _for) public view returns (uint256);
}
// File: contracts/converter/BancorConverter.sol
pragma solidity 0.4.26;
/**
* @dev Bancor Converter
*
* The Bancor converter allows for conversions between a Smart Token and other ERC20 tokens and between different ERC20 tokens and themselves.
*
* This mechanism opens the possibility to create different financial tools (for example, lower slippage in conversions).
*
* The converter is upgradable (just like any SmartTokenController) and all upgrades are opt-in.
*
* WARNING: It is NOT RECOMMENDED to use the converter with Smart Tokens that have less than 8 decimal digits or with very small numbers because of precision loss
*
* Open issues:
* - Front-running attacks are currently mitigated by the following mechanisms:
* - minimum return argument for each conversion provides a way to define a minimum/maximum price for the transaction
* - gas price limit prevents users from having control over the order of execution
* - gas price limit check can be skipped if the transaction comes from a trusted, whitelisted signer
*
* Other potential solutions might include a commit/reveal based schemes
* - Possibly add getters for the reserve fields so that the client won't need to rely on the order in the struct
*/
contract BancorConverter is IBancorConverter, SmartTokenController, Managed, ContractRegistryClient, FeatureIds {
using SafeMath for uint256;
uint32 private constant RATIO_RESOLUTION = 1000000;
uint64 private constant CONVERSION_FEE_RESOLUTION = 1000000;
struct Reserve {
uint256 virtualBalance; // reserve virtual balance
uint32 ratio; // reserve ratio, represented in ppm, 1-1000000
bool isVirtualBalanceEnabled; // true if virtual balance is enabled, false if not
bool isSaleEnabled; // is sale of the reserve token enabled, can be set by the owner
bool isSet; // used to tell if the mapping element is defined
}
/**
* @dev version number
*/
uint16 public version = 24;
string public converterType = 'bancor';
IWhitelist public conversionWhitelist; // whitelist contract with list of addresses that are allowed to use the converter
IERC20Token[] public reserveTokens; // ERC20 standard token addresses (prior version 17, use 'connectorTokens' instead)
mapping (address => Reserve) public reserves; // reserve token addresses -> reserve data (prior version 17, use 'connectors' instead)
uint32 private totalReserveRatio = 0; // used to efficiently prevent increasing the total reserve ratio above 100%
uint32 public maxConversionFee = 0; // maximum conversion fee for the lifetime of the contract,
// represented in ppm, 0...1000000 (0 = no fee, 100 = 0.01%, 1000000 = 100%)
uint32 public conversionFee = 0; // current conversion fee, represented in ppm, 0...maxConversionFee
bool public conversionsEnabled = true; // deprecated, backward compatibility
/**
* @dev triggered when a conversion between two tokens occurs
*
* @param _fromToken ERC20 token converted from
* @param _toToken ERC20 token converted to
* @param _trader wallet that initiated the trade
* @param _amount amount converted, in fromToken
* @param _return amount returned, minus conversion fee
* @param _conversionFee conversion fee
*/
event Conversion(
address indexed _fromToken,
address indexed _toToken,
address indexed _trader,
uint256 _amount,
uint256 _return,
int256 _conversionFee
);
/**
* @dev triggered after a conversion with new price data
*
* @param _connectorToken reserve token
* @param _tokenSupply smart token supply
* @param _connectorBalance reserve balance
* @param _connectorWeight reserve ratio
*/
event PriceDataUpdate(
address indexed _connectorToken,
uint256 _tokenSupply,
uint256 _connectorBalance,
uint32 _connectorWeight
);
/**
* @dev triggered when the conversion fee is updated
*
* @param _prevFee previous fee percentage, represented in ppm
* @param _newFee new fee percentage, represented in ppm
*/
event ConversionFeeUpdate(uint32 _prevFee, uint32 _newFee);
/**
* @dev initializes a new BancorConverter instance
*
* @param _token smart token governed by the converter
* @param _registry address of a contract registry contract
* @param _maxConversionFee maximum conversion fee, represented in ppm
* @param _reserveToken optional, initial reserve, allows defining the first reserve at deployment time
* @param _reserveRatio optional, ratio for the initial reserve
*/
constructor(
ISmartToken _token,
IContractRegistry _registry,
uint32 _maxConversionFee,
IERC20Token _reserveToken,
uint32 _reserveRatio
) ContractRegistryClient(_registry)
public
SmartTokenController(_token)
validConversionFee(_maxConversionFee)
{
IContractFeatures features = IContractFeatures(addressOf(CONTRACT_FEATURES));
// initialize supported features
if (features != address(0))
features.enableFeatures(FeatureIds.CONVERTER_CONVERSION_WHITELIST, true);
maxConversionFee = _maxConversionFee;
if (_reserveToken != address(0))
addReserve(_reserveToken, _reserveRatio);
}
// validates a reserve token address - verifies that the address belongs to one of the reserve tokens
modifier validReserve(IERC20Token _address) {
require(reserves[_address].isSet);
_;
}
// validates conversion fee
modifier validConversionFee(uint32 _conversionFee) {
require(_conversionFee >= 0 && _conversionFee <= CONVERSION_FEE_RESOLUTION);
_;
}
// validates reserve ratio
modifier validReserveRatio(uint32 _ratio) {
require(_ratio > 0 && _ratio <= RATIO_RESOLUTION);
_;
}
// allows execution only if the total-supply of the token is greater than zero
modifier totalSupplyGreaterThanZeroOnly {
require(token.totalSupply() > 0);
_;
}
// allows execution only on a multiple-reserve converter
modifier multipleReservesOnly {
require(reserveTokens.length > 1);
_;
}
/**
* @dev returns the number of reserve tokens defined
* note that prior to version 17, you should use 'connectorTokenCount' instead
*
* @return number of reserve tokens
*/
function reserveTokenCount() public view returns (uint16) {
return uint16(reserveTokens.length);
}
/**
* @dev allows the owner to update & enable the conversion whitelist contract address
* when set, only addresses that are whitelisted are actually allowed to use the converter
* note that the whitelist check is actually done by the BancorNetwork contract
*
* @param _whitelist address of a whitelist contract
*/
function setConversionWhitelist(IWhitelist _whitelist)
public
ownerOnly
notThis(_whitelist)
{
conversionWhitelist = _whitelist;
}
/**
* @dev allows transferring the token ownership
* the new owner needs to accept the transfer
* can only be called by the contract owner
* note that token ownership can only be transferred while the owner is the converter upgrader contract
*
* @param _newOwner new token owner
*/
function transferTokenOwnership(address _newOwner)
public
ownerOnly
only(BANCOR_CONVERTER_UPGRADER)
{
super.transferTokenOwnership(_newOwner);
}
/**
* @dev used by a new owner to accept a token ownership transfer
* can only be called by the contract owner
* note that token ownership can only be accepted if its total-supply is greater than zero
*/
function acceptTokenOwnership()
public
ownerOnly
totalSupplyGreaterThanZeroOnly
{
super.acceptTokenOwnership();
}
/**
* @dev updates the current conversion fee
* can only be called by the manager
*
* @param _conversionFee new conversion fee, represented in ppm
*/
function setConversionFee(uint32 _conversionFee)
public
ownerOrManagerOnly
{
require(_conversionFee >= 0 && _conversionFee <= maxConversionFee);
emit ConversionFeeUpdate(conversionFee, _conversionFee);
conversionFee = _conversionFee;
}
/**
* @dev given a return amount, returns the amount minus the conversion fee
*
* @param _amount return amount
* @param _magnitude 1 for standard conversion, 2 for cross reserve conversion
*
* @return return amount minus conversion fee
*/
function getFinalAmount(uint256 _amount, uint8 _magnitude) public view returns (uint256) {
return _amount.mul((CONVERSION_FEE_RESOLUTION - conversionFee) ** _magnitude).div(CONVERSION_FEE_RESOLUTION ** _magnitude);
}
/**
* @dev withdraws tokens held by the converter and sends them to an account
* can only be called by the owner
* note that reserve tokens can only be withdrawn by the owner while the converter is inactive
* unless the owner is the converter upgrader contract
*
* @param _token ERC20 token contract address
* @param _to account to receive the new amount
* @param _amount amount to withdraw
*/
function withdrawTokens(IERC20Token _token, address _to, uint256 _amount) public {
address converterUpgrader = addressOf(BANCOR_CONVERTER_UPGRADER);
// if the token is not a reserve token, allow withdrawal
// otherwise verify that the converter is inactive or that the owner is the upgrader contract
require(!reserves[_token].isSet || token.owner() != address(this) || owner == converterUpgrader);
super.withdrawTokens(_token, _to, _amount);
}
/**
* @dev upgrades the converter to the latest version
* can only be called by the owner
* note that the owner needs to call acceptOwnership/acceptManagement on the new converter after the upgrade
*/
function upgrade() public ownerOnly {
IBancorConverterUpgrader converterUpgrader = IBancorConverterUpgrader(addressOf(BANCOR_CONVERTER_UPGRADER));
transferOwnership(converterUpgrader);
converterUpgrader.upgrade(version);
acceptOwnership();
}
/**
* @dev defines a new reserve for the token
* can only be called by the owner while the converter is inactive
* note that prior to version 17, you should use 'addConnector' instead
*
* @param _token address of the reserve token
* @param _ratio constant reserve ratio, represented in ppm, 1-1000000
*/
function addReserve(IERC20Token _token, uint32 _ratio)
public
ownerOnly
inactive
validAddress(_token)
notThis(_token)
validReserveRatio(_ratio)
{
require(_token != token && !reserves[_token].isSet && totalReserveRatio + _ratio <= RATIO_RESOLUTION); // validate input
reserves[_token].ratio = _ratio;
reserves[_token].isVirtualBalanceEnabled = false;
reserves[_token].virtualBalance = 0;
reserves[_token].isSaleEnabled = true;
reserves[_token].isSet = true;
reserveTokens.push(_token);
totalReserveRatio += _ratio;
}
/**
* @dev updates a reserve's virtual balance
* only used during an upgrade process
* can only be called by the contract owner while the owner is the converter upgrader contract
* note that prior to version 17, you should use 'updateConnector' instead
*
* @param _reserveToken address of the reserve token
* @param _virtualBalance new reserve virtual balance, or 0 to disable virtual balance
*/
function updateReserveVirtualBalance(IERC20Token _reserveToken, uint256 _virtualBalance)
public
ownerOnly
only(BANCOR_CONVERTER_UPGRADER)
validReserve(_reserveToken)
{
Reserve storage reserve = reserves[_reserveToken];
reserve.isVirtualBalanceEnabled = _virtualBalance != 0;
reserve.virtualBalance = _virtualBalance;
}
/**
* @dev returns the reserve's ratio
* added in version 22
*
* @param _reserveToken reserve token contract address
*
* @return reserve ratio
*/
function getReserveRatio(IERC20Token _reserveToken)
public
view
validReserve(_reserveToken)
returns (uint256)
{
return reserves[_reserveToken].ratio;
}
/**
* @dev returns the reserve's balance
* note that prior to version 17, you should use 'getConnectorBalance' instead
*
* @param _reserveToken reserve token contract address
*
* @return reserve balance
*/
function getReserveBalance(IERC20Token _reserveToken)
public
view
validReserve(_reserveToken)
returns (uint256)
{
return _reserveToken.balanceOf(this);
}
/**
* @dev calculates the expected return of converting a given amount of tokens
*
* @param _fromToken contract address of the token to convert from
* @param _toToken contract address of the token to convert to
* @param _amount amount of tokens received from the user
*
* @return amount of tokens that the user will receive
* @return amount of tokens that the user will pay as fee
*/
function getReturn(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount) public view returns (uint256, uint256) {
require(_fromToken != _toToken); // validate input
// conversion between the token and one of its reserves
if (_toToken == token)
return getPurchaseReturn(_fromToken, _amount);
else if (_fromToken == token)
return getSaleReturn(_toToken, _amount);
// conversion between 2 reserves
return getCrossReserveReturn(_fromToken, _toToken, _amount);
}
/**
* @dev calculates the expected return of buying with a given amount of tokens
*
* @param _reserveToken contract address of the reserve token
* @param _depositAmount amount of reserve-tokens received from the user
*
* @return amount of supply-tokens that the user will receive
* @return amount of supply-tokens that the user will pay as fee
*/
function getPurchaseReturn(IERC20Token _reserveToken, uint256 _depositAmount)
public
view
active
validReserve(_reserveToken)
returns (uint256, uint256)
{
Reserve storage reserve = reserves[_reserveToken];
uint256 tokenSupply = token.totalSupply();
uint256 reserveBalance = _reserveToken.balanceOf(this);
IBancorFormula formula = IBancorFormula(addressOf(BANCOR_FORMULA));
uint256 amount = formula.calculatePurchaseReturn(tokenSupply, reserveBalance, reserve.ratio, _depositAmount);
uint256 finalAmount = getFinalAmount(amount, 1);
// return the amount minus the conversion fee and the conversion fee
return (finalAmount, amount - finalAmount);
}
/**
* @dev calculates the expected return of selling a given amount of tokens
*
* @param _reserveToken contract address of the reserve token
* @param _sellAmount amount of supply-tokens received from the user
*
* @return amount of reserve-tokens that the user will receive
* @return amount of reserve-tokens that the user will pay as fee
*/
function getSaleReturn(IERC20Token _reserveToken, uint256 _sellAmount)
public
view
active
validReserve(_reserveToken)
returns (uint256, uint256)
{
Reserve storage reserve = reserves[_reserveToken];
uint256 tokenSupply = token.totalSupply();
uint256 reserveBalance = _reserveToken.balanceOf(this);
IBancorFormula formula = IBancorFormula(addressOf(BANCOR_FORMULA));
uint256 amount = formula.calculateSaleReturn(tokenSupply, reserveBalance, reserve.ratio, _sellAmount);
uint256 finalAmount = getFinalAmount(amount, 1);
// return the amount minus the conversion fee and the conversion fee
return (finalAmount, amount - finalAmount);
}
/**
* @dev calculates the expected return of converting a given amount from one reserve to another
* note that prior to version 17, you should use 'getCrossConnectorReturn' instead
*
* @param _fromReserveToken contract address of the reserve token to convert from
* @param _toReserveToken contract address of the reserve token to convert to
* @param _amount amount of tokens received from the user
*
* @return amount of tokens that the user will receive
* @return amount of tokens that the user will pay as fee
*/
function getCrossReserveReturn(IERC20Token _fromReserveToken, IERC20Token _toReserveToken, uint256 _amount)
public
view
active
validReserve(_fromReserveToken)
validReserve(_toReserveToken)
returns (uint256, uint256)
{
Reserve storage fromReserve = reserves[_fromReserveToken];
Reserve storage toReserve = reserves[_toReserveToken];
IBancorFormula formula = IBancorFormula(addressOf(BANCOR_FORMULA));
uint256 amount = formula.calculateCrossReserveReturn(
getReserveBalance(_fromReserveToken),
fromReserve.ratio,
getReserveBalance(_toReserveToken),
toReserve.ratio,
_amount);
uint256 finalAmount = getFinalAmount(amount, 2);
// return the amount minus the conversion fee and the conversion fee
// the fee is higher (magnitude = 2) since cross reserve conversion equals 2 conversions (from / to the smart token)
return (finalAmount, amount - finalAmount);
}
/**
* @dev converts a specific amount of _fromToken to _toToken
* can only be called by the bancor network contract
*
* @param _fromToken ERC20 token to convert from
* @param _toToken ERC20 token to convert to
* @param _amount amount to convert, in fromToken
* @param _minReturn if the conversion results in an amount smaller than the minimum return - it is cancelled, must be nonzero
*
* @return conversion return amount
*/
function convertInternal(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _minReturn)
public
only(BANCOR_NETWORK)
greaterThanZero(_minReturn)
returns (uint256)
{
require(_fromToken != _toToken); // validate input
// conversion between the token and one of its reserves
if (_toToken == token)
return buy(_fromToken, _amount, _minReturn);
else if (_fromToken == token)
return sell(_toToken, _amount, _minReturn);
uint256 amount;
uint256 feeAmount;
// conversion between 2 reserves
(amount, feeAmount) = getCrossReserveReturn(_fromToken, _toToken, _amount);
// ensure the trade gives something in return and meets the minimum requested amount
require(amount != 0 && amount >= _minReturn);
Reserve storage fromReserve = reserves[_fromToken];
Reserve storage toReserve = reserves[_toToken];
// ensure that the trade won't deplete the reserve balance
uint256 toReserveBalance = getReserveBalance(_toToken);
assert(amount < toReserveBalance);
// transfer funds from the caller in the from reserve token
ensureTransferFrom(_fromToken, msg.sender, this, _amount);
// transfer funds to the caller in the to reserve token
ensureTransferFrom(_toToken, this, msg.sender, amount);
// dispatch the conversion event
// the fee is higher (magnitude = 2) since cross reserve conversion equals 2 conversions (from / to the smart token)
dispatchConversionEvent(_fromToken, _toToken, _amount, amount, feeAmount);
// dispatch price data updates for the smart token / both reserves
emit PriceDataUpdate(_fromToken, token.totalSupply(), _fromToken.balanceOf(this), fromReserve.ratio);
emit PriceDataUpdate(_toToken, token.totalSupply(), _toToken.balanceOf(this), toReserve.ratio);
return amount;
}
/**
* @dev buys the token by depositing one of its reserve tokens
*
* @param _reserveToken reserve token contract address
* @param _depositAmount amount to deposit (in the reserve token)
* @param _minReturn if the conversion results in an amount smaller than the minimum return - it is cancelled, must be nonzero
*
* @return buy return amount
*/
function buy(IERC20Token _reserveToken, uint256 _depositAmount, uint256 _minReturn) internal returns (uint256) {
uint256 amount;
uint256 feeAmount;
(amount, feeAmount) = getPurchaseReturn(_reserveToken, _depositAmount);
// ensure the trade gives something in return and meets the minimum requested amount
require(amount != 0 && amount >= _minReturn);
Reserve storage reserve = reserves[_reserveToken];
// transfer funds from the caller in the reserve token
ensureTransferFrom(_reserveToken, msg.sender, this, _depositAmount);
// issue new funds to the caller in the smart token
token.issue(msg.sender, amount);
// dispatch the conversion event
dispatchConversionEvent(_reserveToken, token, _depositAmount, amount, feeAmount);
// dispatch price data update for the smart token/reserve
emit PriceDataUpdate(_reserveToken, token.totalSupply(), _reserveToken.balanceOf(this), reserve.ratio);
return amount;
}
/**
* @dev sells the token by withdrawing from one of its reserve tokens
*
* @param _reserveToken reserve token contract address
* @param _sellAmount amount to sell (in the smart token)
* @param _minReturn if the conversion results in an amount smaller the minimum return - it is cancelled, must be nonzero
*
* @return sell return amount
*/
function sell(IERC20Token _reserveToken, uint256 _sellAmount, uint256 _minReturn) internal returns (uint256) {
require(_sellAmount <= token.balanceOf(msg.sender)); // validate input
uint256 amount;
uint256 feeAmount;
(amount, feeAmount) = getSaleReturn(_reserveToken, _sellAmount);
// ensure the trade gives something in return and meets the minimum requested amount
require(amount != 0 && amount >= _minReturn);
// ensure that the trade will only deplete the reserve balance if the total supply is depleted as well
uint256 tokenSupply = token.totalSupply();
uint256 reserveBalance = _reserveToken.balanceOf(this);
assert(amount < reserveBalance || (amount == reserveBalance && _sellAmount == tokenSupply));
Reserve storage reserve = reserves[_reserveToken];
// destroy _sellAmount from the caller's balance in the smart token
token.destroy(msg.sender, _sellAmount);
// transfer funds to the caller in the reserve token
ensureTransferFrom(_reserveToken, this, msg.sender, amount);
// dispatch the conversion event
dispatchConversionEvent(token, _reserveToken, _sellAmount, amount, feeAmount);
// dispatch price data update for the smart token/reserve
emit PriceDataUpdate(_reserveToken, token.totalSupply(), _reserveToken.balanceOf(this), reserve.ratio);
return amount;
}
/**
* @dev converts a specific amount of _fromToken to _toToken
* note that prior to version 16, you should use 'convert' instead
*
* @param _fromToken ERC20 token to convert from
* @param _toToken ERC20 token to convert to
* @param _amount amount to convert, in fromToken
* @param _minReturn if the conversion results in an amount smaller than the minimum return - it is cancelled, must be nonzero
* @param _affiliateAccount affiliate account
* @param _affiliateFee affiliate fee in PPM
*
* @return conversion return amount
*/
function convert2(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _minReturn, address _affiliateAccount, uint256 _affiliateFee) public returns (uint256) {
IERC20Token[] memory path = new IERC20Token[](3);
(path[0], path[1], path[2]) = (_fromToken, token, _toToken);
return quickConvert2(path, _amount, _minReturn, _affiliateAccount, _affiliateFee);
}
/**
* @dev converts the token to any other token in the bancor network by following a predefined conversion path
* note that when converting from an ERC20 token (as opposed to a smart token), allowance must be set beforehand
* note that prior to version 16, you should use 'quickConvert' instead
*
* @param _path conversion path, see conversion path format in the BancorNetwork contract
* @param _amount amount to convert from (in the initial source token)
* @param _minReturn if the conversion results in an amount smaller than the minimum return - it is cancelled, must be nonzero
* @param _affiliateAccount affiliate account
* @param _affiliateFee affiliate fee in PPM
*
* @return tokens issued in return
*/
function quickConvert2(IERC20Token[] _path, uint256 _amount, uint256 _minReturn, address _affiliateAccount, uint256 _affiliateFee)
public
payable
returns (uint256)
{
return quickConvertPrioritized2(_path, _amount, _minReturn, getSignature(0x0, 0x0, 0x0, 0x0, 0x0), _affiliateAccount, _affiliateFee);
}
/**
* @dev converts the token to any other token in the bancor network by following a predefined conversion path
* note that when converting from an ERC20 token (as opposed to a smart token), allowance must be set beforehand
* note that prior to version 16, you should use 'quickConvertPrioritized' instead
*
* @param _path conversion path, see conversion path format in the BancorNetwork contract
* @param _amount amount to convert from (in the initial source token)
* @param _minReturn if the conversion results in an amount smaller than the minimum return - it is cancelled, must be nonzero
* @param _signature an array of the following elements:
* [0] uint256 custom value that was signed for prioritized conversion; must be equal to _amount
* [1] uint256 if the current block exceeded the given parameter - it is cancelled
* [2] uint8 (signature[128:130]) associated with the signer address and helps to validate if the signature is legit
* [3] bytes32 (signature[0:64]) associated with the signer address and helps to validate if the signature is legit
* [4] bytes32 (signature[64:128]) associated with the signer address and helps to validate if the signature is legit
* if the array is empty (length == 0), then the gas-price limit is verified instead of the signature
* @param _affiliateAccount affiliate account
* @param _affiliateFee affiliate fee in PPM
*
* @return tokens issued in return
*/
function quickConvertPrioritized2(IERC20Token[] _path, uint256 _amount, uint256 _minReturn, uint256[] memory _signature, address _affiliateAccount, uint256 _affiliateFee)
public
payable
returns (uint256)
{
require(_signature.length == 0 || _signature[0] == _amount);
IBancorNetwork bancorNetwork = IBancorNetwork(addressOf(BANCOR_NETWORK));
// we need to transfer the source tokens from the caller to the BancorNetwork contract,
// so it can execute the conversion on behalf of the caller
if (msg.value == 0) {
// not ETH, send the source tokens to the BancorNetwork contract
// if the token is the smart token, no allowance is required - destroy the tokens
// from the caller and issue them to the BancorNetwork contract
if (_path[0] == token) {
token.destroy(msg.sender, _amount); // destroy _amount tokens from the caller's balance in the smart token
token.issue(bancorNetwork, _amount); // issue _amount new tokens to the BancorNetwork contract
} else {
// otherwise, we assume we already have allowance, transfer the tokens directly to the BancorNetwork contract
ensureTransferFrom(_path[0], msg.sender, bancorNetwork, _amount);
}
}
// execute the conversion and pass on the ETH with the call
return bancorNetwork.convertForPrioritized4.value(msg.value)(_path, _amount, _minReturn, msg.sender, _signature, _affiliateAccount, _affiliateFee);
}
/**
* @dev allows a user to convert BNT that was sent from another blockchain into any other
* token on the BancorNetwork without specifying the amount of BNT to be converted, but
* rather by providing the xTransferId which allows us to get the amount from BancorX.
* note that prior to version 16, you should use 'completeXConversion' instead
*
* @param _path conversion path, see conversion path format in the BancorNetwork contract
* @param _minReturn if the conversion results in an amount smaller than the minimum return - it is cancelled, must be nonzero
* @param _conversionId pre-determined unique (if non zero) id which refers to this transaction
* @param _signature an array of the following elements:
* [0] uint256 custom value that was signed for prioritized conversion; must be equal to _conversionId
* [1] uint256 if the current block exceeded the given parameter - it is cancelled
* [2] uint8 (signature[128:130]) associated with the signer address and helps to validate if the signature is legit
* [3] bytes32 (signature[0:64]) associated with the signer address and helps to validate if the signature is legit
* [4] bytes32 (signature[64:128]) associated with the signer address and helps to validate if the signature is legit
* if the array is empty (length == 0), then the gas-price limit is verified instead of the signature
*
* @return tokens issued in return
*/
function completeXConversion2(
IERC20Token[] _path,
uint256 _minReturn,
uint256 _conversionId,
uint256[] memory _signature
)
public
returns (uint256)
{
// verify that the custom value (if valid) is equal to _conversionId
require(_signature.length == 0 || _signature[0] == _conversionId);
IBancorX bancorX = IBancorX(addressOf(BANCOR_X));
IBancorNetwork bancorNetwork = IBancorNetwork(addressOf(BANCOR_NETWORK));
// verify that the first token in the path is BNT
require(_path[0] == addressOf(BNT_TOKEN));
// get conversion amount from BancorX contract
uint256 amount = bancorX.getXTransferAmount(_conversionId, msg.sender);
// send BNT from msg.sender to the BancorNetwork contract
token.destroy(msg.sender, amount);
token.issue(bancorNetwork, amount);
return bancorNetwork.convertForPrioritized4(_path, amount, _minReturn, msg.sender, _signature, address(0), 0);
}
/**
* @dev returns whether or not the caller is an administrator
*/
function isAdmin() internal view returns (bool) {
return msg.sender == owner || msg.sender == manager;
}
/**
* @dev ensures transfer of tokens, taking into account that some ERC-20 implementations don't return
* true on success but revert on failure instead
*
* @param _token the token to transfer
* @param _from the address to transfer the tokens from
* @param _to the address to transfer the tokens to
* @param _amount the amount to transfer
*/
function ensureTransferFrom(IERC20Token _token, address _from, address _to, uint256 _amount) private {
// We must assume that functions `transfer` and `transferFrom` do not return anything,
// because not all tokens abide the requirement of the ERC20 standard to return success or failure.
// This is because in the current compiler version, the calling contract can handle more returned data than expected but not less.
// This may change in the future, so that the calling contract will revert if the size of the data is not exactly what it expects.
uint256 prevBalance = _token.balanceOf(_to);
if (_from == address(this))
INonStandardERC20(_token).transfer(_to, _amount);
else
INonStandardERC20(_token).transferFrom(_from, _to, _amount);
uint256 postBalance = _token.balanceOf(_to);
require(postBalance > prevBalance);
}
/**
* @dev buys the token with all reserve tokens using the same percentage
* for example, if the caller increases the supply by 10%,
* then it will cost an amount equal to 10% of each reserve token balance
* note that the function can be called only when conversions are enabled
*
* @param _amount amount to increase the supply by (in the smart token)
*/
function fund(uint256 _amount)
public
multipleReservesOnly
{
uint256 supply = token.totalSupply();
IBancorFormula formula = IBancorFormula(addressOf(BANCOR_FORMULA));
// iterate through the reserve tokens and transfer a percentage equal to the ratio between _amount
// and the total supply in each reserve from the caller to the converter
IERC20Token reserveToken;
uint256 reserveBalance;
uint256 reserveAmount;
for (uint16 i = 0; i < reserveTokens.length; i++) {
reserveToken = reserveTokens[i];
reserveBalance = reserveToken.balanceOf(this);
reserveAmount = formula.calculateFundCost(supply, reserveBalance, totalReserveRatio, _amount);
Reserve storage reserve = reserves[reserveToken];
// transfer funds from the caller in the reserve token
ensureTransferFrom(reserveToken, msg.sender, this, reserveAmount);
// dispatch price data update for the smart token/reserve
emit PriceDataUpdate(reserveToken, supply + _amount, reserveBalance + reserveAmount, reserve.ratio);
}
// issue new funds to the caller in the smart token
token.issue(msg.sender, _amount);
}
/**
* @dev sells the token for all reserve tokens using the same percentage
* for example, if the holder sells 10% of the supply,
* then they will receive 10% of each reserve token balance in return
* note that the function can be called also when conversions are disabled
*
* @param _amount amount to liquidate (in the smart token)
*/
function liquidate(uint256 _amount)
public
multipleReservesOnly
{
uint256 supply = token.totalSupply();
IBancorFormula formula = IBancorFormula(addressOf(BANCOR_FORMULA));
// destroy _amount from the caller's balance in the smart token
token.destroy(msg.sender, _amount);
// iterate through the reserve tokens and send a percentage equal to the ratio between _amount
// and the total supply from each reserve balance to the caller
IERC20Token reserveToken;
uint256 reserveBalance;
uint256 reserveAmount;
for (uint16 i = 0; i < reserveTokens.length; i++) {
reserveToken = reserveTokens[i];
reserveBalance = reserveToken.balanceOf(this);
reserveAmount = formula.calculateLiquidateReturn(supply, reserveBalance, totalReserveRatio, _amount);
Reserve storage reserve = reserves[reserveToken];
// transfer funds to the caller in the reserve token
ensureTransferFrom(reserveToken, this, msg.sender, reserveAmount);
// dispatch price data update for the smart token/reserve
emit PriceDataUpdate(reserveToken, supply - _amount, reserveBalance - reserveAmount, reserve.ratio);
}
}
/**
* @dev helper, dispatches the Conversion event
*
* @param _fromToken ERC20 token to convert from
* @param _toToken ERC20 token to convert to
* @param _amount amount purchased/sold (in the source token)
* @param _returnAmount amount returned (in the target token)
*/
function dispatchConversionEvent(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _returnAmount, uint256 _feeAmount) private {
// fee amount is converted to 255 bits -
// negative amount means the fee is taken from the source token, positive amount means its taken from the target token
// currently the fee is always taken from the target token
// since we convert it to a signed number, we first ensure that it's capped at 255 bits to prevent overflow
assert(_feeAmount < 2 ** 255);
emit Conversion(_fromToken, _toToken, msg.sender, _amount, _returnAmount, int256(_feeAmount));
}
function getSignature(
uint256 _customVal,
uint256 _block,
uint8 _v,
bytes32 _r,
bytes32 _s
) private pure returns (uint256[] memory) {
if (_v == 0x0 && _r == 0x0 && _s == 0x0)
return new uint256[](0);
uint256[] memory signature = new uint256[](5);
signature[0] = _customVal;
signature[1] = _block;
signature[2] = uint256(_v);
signature[3] = uint256(_r);
signature[4] = uint256(_s);
return signature;
}
/**
* @dev deprecated, backward compatibility
*/
function change(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _minReturn) public returns (uint256) {
return convertInternal(_fromToken, _toToken, _amount, _minReturn);
}
/**
* @dev deprecated, backward compatibility
*/
function convert(IERC20Token _fromToken, IERC20Token _toToken, uint256 _amount, uint256 _minReturn) public returns (uint256) {
return convert2(_fromToken, _toToken, _amount, _minReturn, address(0), 0);
}
/**
* @dev deprecated, backward compatibility
*/
function quickConvert(IERC20Token[] _path, uint256 _amount, uint256 _minReturn) public payable returns (uint256) {
return quickConvert2(_path, _amount, _minReturn, address(0), 0);
}
/**
* @dev deprecated, backward compatibility
*/
function quickConvertPrioritized(IERC20Token[] _path, uint256 _amount, uint256 _minReturn, uint256 _block, uint8 _v, bytes32 _r, bytes32 _s) public payable returns (uint256) {
return quickConvertPrioritized2(_path, _amount, _minReturn, getSignature(_amount, _block, _v, _r, _s), address(0), 0);
}
/**
* @dev deprecated, backward compatibility
*/
function completeXConversion(IERC20Token[] _path, uint256 _minReturn, uint256 _conversionId, uint256 _block, uint8 _v, bytes32 _r, bytes32 _s) public returns (uint256) {
return completeXConversion2(_path, _minReturn, _conversionId, getSignature(_conversionId, _block, _v, _r, _s));
}
/**
* @dev deprecated, backward compatibility
*/
function connectors(address _address) public view returns (uint256, uint32, bool, bool, bool) {
Reserve storage reserve = reserves[_address];
return(reserve.virtualBalance, reserve.ratio, reserve.isVirtualBalanceEnabled, reserve.isSaleEnabled, reserve.isSet);
}
/**
* @dev deprecated, backward compatibility
*/
function connectorTokens(uint256 _index) public view returns (IERC20Token) {
return BancorConverter.reserveTokens[_index];
}
/**
* @dev deprecated, backward compatibility
*/
function connectorTokenCount() public view returns (uint16) {
return reserveTokenCount();
}
/**
* @dev deprecated, backward compatibility
*/
function addConnector(IERC20Token _token, uint32 _weight, bool /*_enableVirtualBalance*/) public {
addReserve(_token, _weight);
}
/**
* @dev deprecated, backward compatibility
*/
function updateConnector(IERC20Token _connectorToken, uint32 /*_weight*/, bool /*_enableVirtualBalance*/, uint256 _virtualBalance) public {
updateReserveVirtualBalance(_connectorToken, _virtualBalance);
}
/**
* @dev deprecated, backward compatibility
*/
function getConnectorBalance(IERC20Token _connectorToken) public view returns (uint256) {
return getReserveBalance(_connectorToken);
}
/**
* @dev deprecated, backward compatibility
*/
function getCrossConnectorReturn(IERC20Token _fromConnectorToken, IERC20Token _toConnectorToken, uint256 _amount) public view returns (uint256, uint256) {
return getCrossReserveReturn(_fromConnectorToken, _toConnectorToken, _amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_adminOnly","type":"bool"}],"name":"restrictRegistryUpdate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_connectorToken","type":"address"},{"name":"","type":"uint32"},{"name":"","type":"bool"},{"name":"_virtualBalance","type":"uint256"}],"name":"updateConnector","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"connectors","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint32"},{"name":"","type":"bool"},{"name":"","type":"bool"},{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bancorX","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_reserveToken","type":"address"}],"name":"getReserveBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"connectorTokens","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_fromToken","type":"address"},{"name":"_toToken","type":"address"},{"name":"_amount","type":"uint256"}],"name":"getReturn","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferTokenOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_path","type":"address[]"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"},{"name":"_block","type":"uint256"},{"name":"_v","type":"uint8"},{"name":"_r","type":"bytes32"},{"name":"_s","type":"bytes32"}],"name":"quickConvertPrioritized","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_fromToken","type":"address"},{"name":"_toToken","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"}],"name":"convertInternal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_reserveToken","type":"address"}],"name":"getReserveRatio","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_path","type":"address[]"},{"name":"_minReturn","type":"uint256"},{"name":"_conversionId","type":"uint256"},{"name":"_signature","type":"uint256[]"}],"name":"completeXConversion2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptTokenOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_magnitude","type":"uint8"}],"name":"getFinalAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"converterType","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_weight","type":"uint32"},{"name":"","type":"bool"}],"name":"addConnector","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"liquidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"withdrawFromToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newManager","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"manager","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"updateRegistry","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_whitelist","type":"address"}],"name":"setConversionWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_path","type":"address[]"},{"name":"_minReturn","type":"uint256"},{"name":"_conversionId","type":"uint256"},{"name":"_block","type":"uint256"},{"name":"_v","type":"uint8"},{"name":"_r","type":"bytes32"},{"name":"_s","type":"bytes32"}],"name":"completeXConversion","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"conversionFee","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_fromToken","type":"address"},{"name":"_toToken","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"}],"name":"change","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"prevRegistry","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_ratio","type":"uint32"}],"name":"addReserve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_fromToken","type":"address"},{"name":"_toToken","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"},{"name":"_affiliateAccount","type":"address"},{"name":"_affiliateFee","type":"uint256"}],"name":"convert2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"connectorTokenCount","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_reserveToken","type":"address"},{"name":"_sellAmount","type":"uint256"}],"name":"getSaleReturn","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_fromToken","type":"address"},{"name":"_toToken","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"}],"name":"convert","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registry","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_fromConnectorToken","type":"address"},{"name":"_toConnectorToken","type":"address"},{"name":"_amount","type":"uint256"}],"name":"getCrossConnectorReturn","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONVERTER_CONVERSION_WHITELIST","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_reserveToken","type":"address"},{"name":"_virtualBalance","type":"uint256"}],"name":"updateReserveVirtualBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxConversionFee","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserveTokenCount","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_reserveToken","type":"address"},{"name":"_depositAmount","type":"uint256"}],"name":"getPurchaseReturn","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_path","type":"address[]"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"},{"name":"_signature","type":"uint256[]"},{"name":"_affiliateAccount","type":"address"},{"name":"_affiliateFee","type":"uint256"}],"name":"quickConvertPrioritized2","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"restoreRegistry","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"conversionsEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"conversionWhitelist","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptManagement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"adminOnly","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"fund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_fromReserveToken","type":"address"},{"name":"_toReserveToken","type":"address"},{"name":"_amount","type":"uint256"}],"name":"getCrossReserveReturn","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"reserveTokens","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"reserves","outputs":[{"name":"virtualBalance","type":"uint256"},{"name":"ratio","type":"uint32"},{"name":"isVirtualBalanceEnabled","type":"bool"},{"name":"isSaleEnabled","type":"bool"},{"name":"isSet","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_connectorToken","type":"address"}],"name":"getConnectorBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_bancorX","type":"address"}],"name":"setBancorX","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_path","type":"address[]"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"},{"name":"_affiliateAccount","type":"address"},{"name":"_affiliateFee","type":"uint256"}],"name":"quickConvert2","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_newManager","type":"address"}],"name":"transferManagement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_conversionFee","type":"uint32"}],"name":"setConversionFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_path","type":"address[]"},{"name":"_amount","type":"uint256"},{"name":"_minReturn","type":"uint256"}],"name":"quickConvert","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_token","type":"address"},{"name":"_registry","type":"address"},{"name":"_maxConversionFee","type":"uint32"},{"name":"_reserveToken","type":"address"},{"name":"_reserveRatio","type":"uint32"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_fromToken","type":"address"},{"indexed":true,"name":"_toToken","type":"address"},{"indexed":true,"name":"_trader","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_return","type":"uint256"},{"indexed":false,"name":"_conversionFee","type":"int256"}],"name":"Conversion","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_connectorToken","type":"address"},{"indexed":false,"name":"_tokenSupply","type":"uint256"},{"indexed":false,"name":"_connectorBalance","type":"uint256"},{"indexed":false,"name":"_connectorWeight","type":"uint32"}],"name":"PriceDataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_prevFee","type":"uint32"},{"indexed":false,"name":"_newFee","type":"uint32"}],"name":"ConversionFeeUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_prevManager","type":"address"},{"indexed":true,"name":"_newManager","type":"address"}],"name":"ManagerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_prevOwner","type":"address"},{"indexed":true,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"}]Contract Creation Code
0x6007805460a860020a61ffff021916751800000000000000000000000000000000000000000017905560c0604052600660808190527f62616e636f72000000000000000000000000000000000000000000000000000060a09081526200006991600891906200057d565b50600c80546001606860020a0319166c010000000000000000000000001790553480156200009657600080fd5b5060405160a08062004c2e8339810160409081528151602083015191830151606084015160809094015160008054600160a060020a0319163317815592949192848680600160a060020a0381161515620000ef57600080fd5b5060028054600160a060020a03928316600160a060020a03199182161790915560048054909116331790558190811615156200012a57600080fd5b5060068054600160a060020a03909216600160a060020a031992831681179091556007805490921617905583600063ffffffff821610801590620001775750620f424063ffffffff821611155b15156200018357600080fd5b620001b77f436f6e74726163744665617475726573000000000000000000000000000000006401000000006200029e810204565b9150600160a060020a038216156200024c57604080517f2c7077c000000000000000000000000000000000000000000000000000000000815260016004820181905260248201529051600160a060020a03841691632c7077c091604480830192600092919082900301818387803b1580156200023257600080fd5b505af115801562000247573d6000803e3d6000fd5b505050505b600c805467ffffffff00000000191664010000000063ffffffff881602179055600160a060020a03841615620002915762000291848464010000000062000339810204565b5050505050505062000622565b600654604080517fbb34534c000000000000000000000000000000000000000000000000000000008152600481018490529051600092600160a060020a03169163bb34534c91602480830192602092919082900301818787803b1580156200030557600080fd5b505af11580156200031a573d6000803e3d6000fd5b505050506040513d60208110156200033157600080fd5b505192915050565b600054600160a060020a031633146200035157600080fd5b600254604080517f8da5cb5b00000000000000000000000000000000000000000000000000000000815290513092600160a060020a031691638da5cb5b9160048083019260209291908290030181600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b505050506040513d6020811015620003dd57600080fd5b5051600160a060020a03161415620003f457600080fd5b81600160a060020a03811615156200040b57600080fd5b82600160a060020a0381163014156200042357600080fd5b8260008163ffffffff16118015620004445750620f424063ffffffff821611155b15156200045057600080fd5b600254600160a060020a03868116911614801590620004955750600160a060020a0385166000908152600b60205260409020600101546601000000000000900460ff16155b8015620004b45750600c54620f424063ffffffff918216860190911611155b1515620004c057600080fd5b505050600160a060020a03919091166000818152600b60205260408120600180820180549284905566010000000000006501000000000063ffffffff1994851663ffffffff808a169190911765ffff0000000019169190911766ff000000000000191691909117909155600a805492830181559093527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8018054600160a060020a031916909317909255600c805492831692821690930116179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005c057805160ff1916838001178555620005f0565b82800160010185558215620005f0579182015b82811115620005f0578251825591602001919060010190620005d3565b50620005fe92915062000602565b5090565b6200061f91905b80821115620005fe576000815560010162000609565b90565b6145fc80620006326000396000f3006080604052600436106102d15763ffffffff60e060020a600035041663024c7ec781146102d65780630ca78923146102f25780630e53aae9146103245780631120a7761461037957806315226b54146103aa57806319b64015146103dd5780631e1401f8146103f557806321e6b53d1461043857806322742564146104595780632a2e2f0c146104c15780632c12b446146104ee5780632cc1cd651461050f57806338a5e016146105ac5780633aa0145a146105c15780633e8ff43f146105df5780633f4d2fc214610669578063415f12401461069857806341a5b33d146106b057806342906029146106da578063481c6a75146106ef57806349d10b64146107045780634af80f0e14610719578063500573511461073a57806354fd4d50146107af578063579cd3ca146107db5780635e35359e146108095780635e5144eb1461083357806361cd756e146108605780636a49d2c4146108755780636ebf36c01461089f57806371f52bf3146108d757806372b44b2c146108ec57806375892cf11461091057806379ba50971461093d5780637b103999146109525780638da5cb5b146109675780638e3047e01461097c57806392d1abb7146109a6578063935e2ae1146109bb57806394c275ad146109df5780639b99a8e2146109f4578063a2c4c33614610a09578063b3a426d514610a2d578063b4a176d314610ace578063bf75455814610ae3578063c45d3d9214610b0c578063c8c2fe6c14610b21578063c976a35914610b36578063ca1d209d14610b4b578063cf73266a14610b63578063d031370b14610b8d578063d4ee1d9014610ba5578063d55ec69714610bba578063d66bd52414610bcf578063d895951214610bf0578063d924f0c314610c11578063e4dd22f614610c32578063e4edf85214610c95578063ecbca55d14610cb6578063f0843ba914610cd4578063f2fde38b14610d25578063fc0c546a14610d46578063fe417fa514610d5b575b600080fd5b3480156102e257600080fd5b506102f06004351515610d7f565b005b3480156102fe57600080fd5b506102f0600160a060020a036004351663ffffffff602435166044351515606435610dff565b34801561033057600080fd5b50610345600160a060020a0360043516610e0f565b6040805195865263ffffffff9094166020860152911515848401521515606084015215156080830152519081900360a00190f35b34801561038557600080fd5b5061038e610e61565b60408051600160a060020a039092168252519081900360200190f35b3480156103b657600080fd5b506103cb600160a060020a0360043516610e70565b60408051918252519081900360200190f35b3480156103e957600080fd5b5061038e600435610f24565b34801561040157600080fd5b5061041f600160a060020a0360043581169060243516604435610f50565b6040805192835260208301919091528051918290030190f35b34801561044457600080fd5b506102f0600160a060020a0360043516610fcd565b604080516020600480358082013583810280860185019096528085526103cb95369593946024949385019291829185019084908082843750949750508435955050506020830135926040810135925060ff606082013516915060808101359060a0013561101d565b3480156104cd57600080fd5b506103cb600160a060020a0360043581169060243516604435606435611046565b3480156104fa57600080fd5b506103cb600160a060020a0360043516611445565b34801561051b57600080fd5b50604080516020600480358082013583810280860185019096528085526103cb953695939460249493850192918291850190849080828437505060408051818801358901803560208181028481018201909552818452989b8a359b8a8c01359b919a909950606090910197509295509082019350918291850190849080828437509497506114a19650505050505050565b3480156105b857600080fd5b506102f0611854565b3480156105cd57600080fd5b506103cb60043560ff6024351661190a565b3480156105eb57600080fd5b506105f4611968565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561062e578181015183820152602001610616565b50505050905090810190601f16801561065b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561067557600080fd5b506102f0600160a060020a036004351663ffffffff6024351660443515156119f6565b3480156106a457600080fd5b506102f0600435611a05565b3480156106bc57600080fd5b506102f0600160a060020a0360043581169060243516604435611d0f565b3480156106e657600080fd5b5061038e611db9565b3480156106fb57600080fd5b5061038e611dc8565b34801561071057600080fd5b506102f0611dd7565b34801561072557600080fd5b506102f0600160a060020a0360043516611f63565b34801561074657600080fd5b50604080516020600480358082013583810280860185019096528085526103cb95369593946024949385019291829185019084908082843750949750508435955050506020830135926040810135925060ff606082013516915060808101359060a00135611fb4565b3480156107bb57600080fd5b506107c4611fce565b6040805161ffff9092168252519081900360200190f35b3480156107e757600080fd5b506107f0611ff1565b6040805163ffffffff9092168252519081900360200190f35b34801561081557600080fd5b506102f0600160a060020a0360043581169060243516604435612009565b34801561083f57600080fd5b506103cb600160a060020a036004358116906024351660443560643561211a565b34801561086c57600080fd5b5061038e612131565b34801561088157600080fd5b506102f0600160a060020a036004351663ffffffff60243516612140565b3480156108ab57600080fd5b506103cb600160a060020a0360043581169060243581169060443590606435906084351660a435612378565b3480156108e357600080fd5b506107c461241e565b3480156108f857600080fd5b5061041f600160a060020a036004351660243561242d565b34801561091c57600080fd5b506103cb600160a060020a036004358116906024351660443560643561270d565b34801561094957600080fd5b506102f061271e565b34801561095e57600080fd5b5061038e612799565b34801561097357600080fd5b5061038e6127a8565b34801561098857600080fd5b5061041f600160a060020a03600435811690602435166044356127b7565b3480156109b257600080fd5b506103cb6127c5565b3480156109c757600080fd5b506102f0600160a060020a03600435166024356127ca565b3480156109eb57600080fd5b506107f061287f565b348015610a0057600080fd5b506107c4612893565b348015610a1557600080fd5b5061041f600160a060020a0360043516602435612899565b604080516020600480358082013583810280860185019096528085526103cb953695939460249493850192918291850190849080828437505060408051818801358901803560208181028481018201909552818452989b8a359b8a8c01359b919a9099506060909101975092955090820193509182918501908490808284375094975050508335600160a060020a0316945050506020909101359050612b2c565b348015610ada57600080fd5b506102f0612e15565b348015610aef57600080fd5b50610af8612e4c565b604080519115158252519081900360200190f35b348015610b1857600080fd5b5061038e612e65565b348015610b2d57600080fd5b506102f0612e74565b348015610b4257600080fd5b50610af8612ef1565b348015610b5757600080fd5b506102f0600435612f12565b348015610b6f57600080fd5b5061041f600160a060020a036004358116906024351660443561321b565b348015610b9957600080fd5b5061038e60043561344b565b348015610bb157600080fd5b5061038e613473565b348015610bc657600080fd5b506102f0613482565b348015610bdb57600080fd5b50610345600160a060020a036004351661355e565b348015610bfc57600080fd5b506103cb600160a060020a03600435166135a4565b348015610c1d57600080fd5b506102f0600160a060020a03600435166135b5565b604080516020600480358082013583810280860185019096528085526103cb9536959394602494938501929182918501908490808284375094975050843595505050602083013592600160a060020a0360408201351692506060013590506135ee565b348015610ca157600080fd5b506102f0600160a060020a0360043516613614565b348015610cc257600080fd5b506102f063ffffffff6004351661367f565b604080516020600480358082013583810280860185019096528085526103cb953695939460249493850192918291850190849080828437509497505084359550505060209092013591506137649050565b348015610d3157600080fd5b506102f0600160a060020a036004351661377c565b348015610d5257600080fd5b5061038e6137d0565b348015610d6757600080fd5b506102f0600160a060020a03600435166024356137df565b60075460ff7401000000000000000000000000000000000000000090910416151581151514801590610db45750610db46138d8565b1515610dbf57600080fd5b60078054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b610e0984826127ca565b50505050565b600160a060020a03166000908152600b602052604090208054600190910154909163ffffffff82169160ff64010000000082048116926501000000000083048216926601000000000000900490911690565b600354600160a060020a031681565b600160a060020a0381166000908152600b602052604081206001015482906601000000000000900460ff161515610ea657600080fd5b6040805160e060020a6370a082310281523060048201529051600160a060020a038516916370a082319160248083019260209291908290030181600087803b158015610ef157600080fd5b505af1158015610f05573d6000803e3d6000fd5b505050506040513d6020811015610f1b57600080fd5b50519392505050565b6000600a82815481101515610f3557fe5b600091825260209091200154600160a060020a031692915050565b600080600160a060020a038581169085161415610f6c57600080fd5b600254600160a060020a0385811691161415610f9557610f8c8584612899565b91509150610fc5565b600254600160a060020a0386811691161415610fb557610f8c848461242d565b610fc085858561321b565b915091505b935093915050565b600054600160a060020a03163314610fe457600080fd5b600080516020614591833981519152610ffc816138ff565b600160a060020a0316331461101057600080fd5b61101982613997565b5050565b600061103a8888886110328b8a8a8a8a613a30565b600080612b2c565b98975050505050505050565b6000806000806000807f42616e636f724e6574776f726b00000000000000000000000000000000000000611079816138ff565b600160a060020a0316331461108d57600080fd5b876000811161109b57600080fd5b600160a060020a038c8116908c1614156110b457600080fd5b600254600160a060020a038c8116911614156110dc576110d58c8b8b613b1f565b9750611436565b600254600160a060020a038d8116911614156110fd576110d58b8b8b613d3d565b6111088c8c8c61321b565b9097509550861580159061111c5750888710155b151561112757600080fd5b600160a060020a03808d166000908152600b6020526040808220928e168252902090955093506111568b610e70565b925082871061116157fe5b61116d8c33308d6140f8565b6111798b30338a6140f8565b6111868c8c8c8a8a614336565b8b600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b1580156111f257600080fd5b505af1158015611206573d6000803e3d6000fd5b505050506040513d602081101561121c57600080fd5b81019080805190602001909291905050508e600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561128857600080fd5b505af115801561129c573d6000803e3d6000fd5b505050506040513d60208110156112b257600080fd5b5051600189015460408051938452602084019290925263ffffffff1682820152519081900360600190a28a600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561134857600080fd5b505af115801561135c573d6000803e3d6000fd5b505050506040513d602081101561137257600080fd5b81019080805190602001909291905050508d600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b1580156113de57600080fd5b505af11580156113f2573d6000803e3d6000fd5b505050506040513d602081101561140857600080fd5b5051600188015460408051938452602084019290925263ffffffff1682820152519081900360600190a28697505b50505050505050949350505050565b600160a060020a0381166000908152600b602052604081206001015482906601000000000000900460ff16151561147b57600080fd5b5050600160a060020a03166000908152600b602052604090206001015463ffffffff1690565b6000806000808451600014806114ce5750858560008151811015156114c257fe5b90602001906020020151145b15156114d957600080fd5b6115027f42616e636f7258000000000000000000000000000000000000000000000000006138ff565b925061152d7f42616e636f724e6574776f726b000000000000000000000000000000000000006138ff565b91506115587f424e54546f6b656e0000000000000000000000000000000000000000000000006138ff565b600160a060020a031688600081518110151561157057fe5b60209081029091010151600160a060020a03161461158d57600080fd5b604080517faafd6b76000000000000000000000000000000000000000000000000000000008152600481018890523360248201529051600160a060020a0385169163aafd6b769160448083019260209291908290030181600087803b1580156115f557600080fd5b505af1158015611609573d6000803e3d6000fd5b505050506040513d602081101561161f57600080fd5b50516002546040805160e060020a63a24835d1028152336004820152602481018490529051929350600160a060020a039091169163a24835d19160448082019260009290919082900301818387803b15801561167a57600080fd5b505af115801561168e573d6000803e3d6000fd5b50506002546040805160e260020a63219e412d028152600160a060020a03878116600483015260248201879052915191909216935063867904b49250604480830192600092919082900301818387803b1580156116ea57600080fd5b505af11580156116fe573d6000803e3d6000fd5b5050505081600160a060020a0316634de006cb89838a338a6000806040518863ffffffff1660e060020a028152600401808060200188815260200187815260200186600160a060020a0316600160a060020a031681526020018060200185600160a060020a0316600160a060020a0316815260200184815260200183810383528a818151815260200191508051906020019060200280838360005b838110156117b1578181015183820152602001611799565b50505050905001838103825286818151815260200191508051906020019060200280838360005b838110156117f05781810151838201526020016117d8565b505050509050019950505050505050505050602060405180830381600087803b15801561181c57600080fd5b505af1158015611830573d6000803e3d6000fd5b505050506040513d602081101561184657600080fd5b505198975050505050505050565b600054600160a060020a0316331461186b57600080fd5b600254604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600092600160a060020a0316916318160ddd91600480830192602092919082900301818787803b1580156118ca57600080fd5b505af11580156118de573d6000803e3d6000fd5b505050506040513d60208110156118f457600080fd5b50511161190057600080fd5b6119086143b9565b565b600c546000906119619060ff8416620f424081810a67ffffffffffffffff9081169361195593899363ffffffff680100000000000000009093048316900383160a9091169061443716565b9063ffffffff61447016565b9392505050565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156119ee5780601f106119c3576101008083540402835291602001916119ee565b820191906000526020600020905b8154815290600101906020018083116119d157829003601f168201915b505050505081565b611a008383612140565b505050565b60008060008060008060006001600a80549050111515611a2457600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015611a7757600080fd5b505af1158015611a8b573d6000803e3d6000fd5b505050506040513d6020811015611aa157600080fd5b50519650611abc6000805160206145718339815191526138ff565b6002546040805160e060020a63a24835d1028152336004820152602481018c90529051929850600160a060020a039091169163a24835d19160448082019260009290919082900301818387803b158015611b1557600080fd5b505af1158015611b29573d6000803e3d6000fd5b50505050600091505b600a5461ffff83161015611d0557600a805461ffff8416908110611b5257fe5b60009182526020808320909101546040805160e060020a6370a082310281523060048201529051600160a060020a03909216985088936370a082319360248084019491939192918390030190829087803b158015611baf57600080fd5b505af1158015611bc3573d6000803e3d6000fd5b505050506040513d6020811015611bd957600080fd5b5051600c54604080517fabfd231d000000000000000000000000000000000000000000000000000000008152600481018b90526024810184905263ffffffff9092166044830152606482018b905251919550600160a060020a0388169163abfd231d916084808201926020929091908290030181600087803b158015611c5e57600080fd5b505af1158015611c72573d6000803e3d6000fd5b505050506040513d6020811015611c8857600080fd5b5051600160a060020a0386166000908152600b602052604090209093509050611cb3853033866140f8565b6001810154604080518a8a038152858703602082015263ffffffff9092168282015251600160a060020a038716916000805160206145b1833981519152919081900360600190a2600190910190611b32565b5050505050505050565b600054600160a060020a03163314611d2657600080fd5b600254604080517f5e35359e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301526044820185905291519190921691635e35359e91606480830192600092919082900301818387803b158015611d9c57600080fd5b505af1158015611db0573d6000803e3d6000fd5b50505050505050565b600554600160a060020a031681565b600454600160a060020a031681565b60075460009074010000000000000000000000000000000000000000900460ff161580611e075750611e076138d8565b1515611e1257600080fd5b611e3b7f436f6e74726163745265676973747279000000000000000000000000000000006138ff565b600654909150600160a060020a03808316911614801590611e645750600160a060020a03811615155b1515611e6f57600080fd5b604080517fbb34534c0000000000000000000000000000000000000000000000000000000081527f436f6e747261637452656769737472790000000000000000000000000000000060048201529051600091600160a060020a0384169163bb34534c9160248082019260209290919082900301818787803b158015611ef357600080fd5b505af1158015611f07573d6000803e3d6000fd5b505050506040513d6020811015611f1d57600080fd5b5051600160a060020a03161415611f3357600080fd5b6006805460078054600160a060020a03808416600160a060020a0319928316179092559091169216919091179055565b600054600160a060020a03163314611f7a57600080fd5b80600160a060020a038116301415611f9157600080fd5b5060098054600160a060020a031916600160a060020a0392909216919091179055565b600061103a888888611fc98a8a8a8a8a613a30565b6114a1565b6007547501000000000000000000000000000000000000000000900461ffff1681565b600c5468010000000000000000900463ffffffff1681565b60006120226000805160206145918339815191526138ff565b600160a060020a0385166000908152600b60205260409020600101549091506601000000000000900460ff1615806120ec5750600254604080517f8da5cb5b00000000000000000000000000000000000000000000000000000000815290513092600160a060020a031691638da5cb5b9160048083019260209291908290030181600087803b1580156120b457600080fd5b505af11580156120c8573d6000803e3d6000fd5b505050506040513d60208110156120de57600080fd5b5051600160a060020a031614155b806121045750600054600160a060020a038281169116145b151561210f57600080fd5b610e09848484614493565b600061212885858585611046565b95945050505050565b600754600160a060020a031681565b600054600160a060020a0316331461215757600080fd5b600254604080517f8da5cb5b00000000000000000000000000000000000000000000000000000000815290513092600160a060020a031691638da5cb5b9160048083019260209291908290030181600087803b1580156121b657600080fd5b505af11580156121ca573d6000803e3d6000fd5b505050506040513d60208110156121e057600080fd5b5051600160a060020a031614156121f657600080fd5b81600160a060020a038116151561220c57600080fd5b82600160a060020a03811630141561222357600080fd5b8260008163ffffffff161180156122435750620f424063ffffffff821611155b151561224e57600080fd5b600254600160a060020a038681169116148015906122925750600160a060020a0385166000908152600b60205260409020600101546601000000000000900460ff16155b80156122b05750600c54620f424063ffffffff918216860190911611155b15156122bb57600080fd5b505050600160a060020a03919091166000818152600b60205260408120600180820180549284905566010000000000006501000000000063ffffffff1994851663ffffffff808a169190911765ffff0000000019169190911766ff000000000000191691909117909155600a805492830181559093527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8018054600160a060020a031916909317909255600c805492831692821690930116179055565b6040805160038082526080820190925260009160609190602082018380388339505060025482519293508a92600160a060020a0390911691508990849060009081106123c057fe5b9060200190602002018460018151811015156123d857fe5b9060200190602002018560028151811015156123f057fe5b600160a060020a039485166020918202909201015292821690925291909116905261103a81878787876135ee565b6000612428612893565b905090565b60008060008060008060008030600160a060020a0316600260009054906101000a9004600160a060020a0316600160a060020a0316638da5cb5b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561249657600080fd5b505af11580156124aa573d6000803e3d6000fd5b505050506040513d60208110156124c057600080fd5b5051600160a060020a0316146124d557600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff16151561250b57600080fd5b600160a060020a03808c166000908152600b6020908152604080832060025482517f18160ddd0000000000000000000000000000000000000000000000000000000081529251919c50909416936318160ddd93600480840194938390030190829087803b15801561257b57600080fd5b505af115801561258f573d6000803e3d6000fd5b505050506040513d60208110156125a557600080fd5b50516040805160e060020a6370a082310281523060048201529051919750600160a060020a038d16916370a08231916024808201926020929091908290030181600087803b1580156125f657600080fd5b505af115801561260a573d6000803e3d6000fd5b505050506040513d602081101561262057600080fd5b5051945061263b6000805160206145718339815191526138ff565b6001880154604080517f49f9b0f7000000000000000000000000000000000000000000000000000000008152600481018a90526024810189905263ffffffff9092166044830152606482018d905251919550600160a060020a038616916349f9b0f7916084808201926020929091908290030181600087803b1580156126c057600080fd5b505af11580156126d4573d6000803e3d6000fd5b505050506040513d60208110156126ea57600080fd5b505192506126f983600161190a565b9b928c90039a509198505050505050505050565b600061212885858585600080612378565b600154600160a060020a0316331461273557600080fd5b60015460008054604051600160a060020a0393841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a36001805460008054600160a060020a0319908116600160a060020a03841617909155169055565b600654600160a060020a031681565b600054600160a060020a031681565b600080610fc085858561321b565b600181565b60008054600160a060020a031633146127e257600080fd5b6000805160206145918339815191526127fa816138ff565b600160a060020a0316331461280e57600080fd5b600160a060020a0384166000908152600b602052604090206001015484906601000000000000900460ff16151561284457600080fd5b505050600160a060020a03919091166000908152600b6020526040902060018101805464ff0000000019168315156401000000000217905555565b600c54640100000000900463ffffffff1681565b600a5490565b60008060008060008060008030600160a060020a0316600260009054906101000a9004600160a060020a0316600160a060020a0316638da5cb5b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561290257600080fd5b505af1158015612916573d6000803e3d6000fd5b505050506040513d602081101561292c57600080fd5b5051600160a060020a03161461294157600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff16151561297757600080fd5b600160a060020a03808c166000908152600b6020908152604080832060025482517f18160ddd0000000000000000000000000000000000000000000000000000000081529251919c50909416936318160ddd93600480840194938390030190829087803b1580156129e757600080fd5b505af11580156129fb573d6000803e3d6000fd5b505050506040513d6020811015612a1157600080fd5b50516040805160e060020a6370a082310281523060048201529051919750600160a060020a038d16916370a08231916024808201926020929091908290030181600087803b158015612a6257600080fd5b505af1158015612a76573d6000803e3d6000fd5b505050506040513d6020811015612a8c57600080fd5b50519450612aa76000805160206145718339815191526138ff565b6001880154604080517f29a00e7c000000000000000000000000000000000000000000000000000000008152600481018a90526024810189905263ffffffff9092166044830152606482018d905251919550600160a060020a038616916329a00e7c916084808201926020929091908290030181600087803b1580156126c057600080fd5b600080845160001480612b56575086856000815181101515612b4a57fe5b90602001906020020151145b1515612b6157600080fd5b612b8a7f42616e636f724e6574776f726b000000000000000000000000000000000000006138ff565b9050341515612cd1576002548851600160a060020a039091169089906000908110612bb157fe5b90602001906020020151600160a060020a03161415612cad576002546040805160e060020a63a24835d1028152336004820152602481018a90529051600160a060020a039092169163a24835d19160448082019260009290919082900301818387803b158015612c2057600080fd5b505af1158015612c34573d6000803e3d6000fd5b50506002546040805160e260020a63219e412d028152600160a060020a038681166004830152602482018d9052915191909216935063867904b49250604480830192600092919082900301818387803b158015612c9057600080fd5b505af1158015612ca4573d6000803e3d6000fd5b50505050612cd1565b612cd1886000815181101515612cbf57fe5b9060200190602002015133838a6140f8565b80600160a060020a0316634de006cb348a8a8a338b8b8b6040518963ffffffff1660e060020a028152600401808060200188815260200187815260200186600160a060020a0316600160a060020a031681526020018060200185600160a060020a0316600160a060020a0316815260200184815260200183810383528a818151815260200191508051906020019060200280838360005b83811015612d80578181015183820152602001612d68565b50505050905001838103825286818151815260200191508051906020019060200280838360005b83811015612dbf578181015183820152602001612da7565b5050505090500199505050505050505050506020604051808303818588803b158015612dea57600080fd5b505af1158015612dfe573d6000803e3d6000fd5b50505050506040513d602081101561184657600080fd5b612e1d6138d8565b1515612e2857600080fd5b60075460068054600160a060020a031916600160a060020a03909216919091179055565b600c546c01000000000000000000000000900460ff1681565b600954600160a060020a031681565b600554600160a060020a03163314612e8b57600080fd5b600554600454604051600160a060020a0392831692909116907fbe4cc281795971a471c980e842627a7f1ea3892ddfce8c5b6357cd2611c1973290600090a36005805460048054600160a060020a0319908116600160a060020a03841617909155169055565b60075474010000000000000000000000000000000000000000900460ff1681565b60008060008060008060006001600a80549050111515612f3157600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015612f8457600080fd5b505af1158015612f98573d6000803e3d6000fd5b505050506040513d6020811015612fae57600080fd5b50519650612fc96000805160206145718339815191526138ff565b9550600091505b600a5461ffff831610156131a357600a805461ffff8416908110612ff057fe5b60009182526020808320909101546040805160e060020a6370a082310281523060048201529051600160a060020a03909216985088936370a082319360248084019491939192918390030190829087803b15801561304d57600080fd5b505af1158015613061573d6000803e3d6000fd5b505050506040513d602081101561307757600080fd5b5051600c54604080517f1da6bbfb000000000000000000000000000000000000000000000000000000008152600481018b90526024810184905263ffffffff9092166044830152606482018b905251919550600160a060020a03881691631da6bbfb916084808201926020929091908290030181600087803b1580156130fc57600080fd5b505af1158015613110573d6000803e3d6000fd5b505050506040513d602081101561312657600080fd5b5051600160a060020a0386166000908152600b602052604090209093509050613151853330866140f8565b600181015460408051898b018152868601602082015263ffffffff9092168282015251600160a060020a038716916000805160206145b1833981519152919081900360600190a2600190910190612fd0565b6002546040805160e260020a63219e412d028152336004820152602481018b90529051600160a060020a039092169163867904b49160448082019260009290919082900301818387803b1580156131f957600080fd5b505af115801561320d573d6000803e3d6000fd5b505050505050505050505050565b600080600080600080600030600160a060020a0316600260009054906101000a9004600160a060020a0316600160a060020a0316638da5cb5b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561328357600080fd5b505af1158015613297573d6000803e3d6000fd5b505050506040513d60208110156132ad57600080fd5b5051600160a060020a0316146132c257600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff1615156132f857600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff16151561332e57600080fd5b600160a060020a03808d166000908152600b6020526040808220928e1682529020909750955061336b6000805160206145718339815191526138ff565b945084600160a060020a03166379c1b4506133858e610e70565b60018a015463ffffffff166133998f610e70565b60018b01546040805163ffffffff87811660e060020a028252600482019690965293851660248501526044840192909252929092166064820152608481018e9052905160a48083019260209291908290030181600087803b1580156133fd57600080fd5b505af1158015613411573d6000803e3d6000fd5b505050506040513d602081101561342757600080fd5b5051935061343684600261190a565b9c938d90039b50929950505050505050505050565b600a80548290811061345957fe5b600091825260209091200154600160a060020a0316905081565b600154600160a060020a031681565b60008054600160a060020a0316331461349a57600080fd5b6134b16000805160206145918339815191526138ff565b90506134bc8161377c565b600754604080517f90f58c96000000000000000000000000000000000000000000000000000000008152750100000000000000000000000000000000000000000090920461ffff16600483015251600160a060020a038316916390f58c9691602480830192600092919082900301818387803b15801561353b57600080fd5b505af115801561354f573d6000803e3d6000fd5b5050505061355b61271e565b50565b600b602052600090815260409020805460019091015463ffffffff81169060ff640100000000820481169165010000000000810482169166010000000000009091041685565b60006135af82610e70565b92915050565b600054600160a060020a031633146135cc57600080fd5b60038054600160a060020a031916600160a060020a0392909216919091179055565b600061360a8686866136038580808080613a30565b8787612b2c565b9695505050505050565b600054600160a060020a03163314806136375750600454600160a060020a031633145b151561364257600080fd5b600454600160a060020a038281169116141561365d57600080fd5b60058054600160a060020a031916600160a060020a0392909216919091179055565b600054600160a060020a03163314806136a25750600454600160a060020a031633145b15156136ad57600080fd5b60008163ffffffff16101580156136d85750600c5463ffffffff640100000000909104811690821611155b15156136e357600080fd5b600c546040805163ffffffff6801000000000000000090930483168152918316602083015280517f81cd2ffb37dd237c0e4e2a3de5265fcf9deb43d3e7801e80db9f1ccfba7ee6009281900390910190a1600c805463ffffffff90921668010000000000000000026bffffffff000000000000000019909216919091179055565b60006137748484846000806135ee565b949350505050565b600054600160a060020a0316331461379357600080fd5b600054600160a060020a03828116911614156137ae57600080fd5b60018054600160a060020a031916600160a060020a0392909216919091179055565b600254600160a060020a031681565b600354600160a060020a031633146137f657600080fd5b6002546040805160e060020a63a24835d1028152600160a060020a038581166004830152602482018590529151919092169163a24835d191604480830192600092919082900301818387803b15801561384e57600080fd5b505af1158015613862573d6000803e3d6000fd5b50506002546040805160e260020a63219e412d028152336004820152602481018690529051600160a060020a03909216935063867904b4925060448082019260009290919082900301818387803b1580156138bc57600080fd5b505af11580156138d0573d6000803e3d6000fd5b505050505050565b60008054600160a060020a0316331480612428575050600454600160a060020a0316331490565b600654604080517fbb34534c000000000000000000000000000000000000000000000000000000008152600481018490529051600092600160a060020a03169163bb34534c91602480830192602092919082900301818787803b15801561396557600080fd5b505af1158015613979573d6000803e3d6000fd5b505050506040513d602081101561398f57600080fd5b505192915050565b600054600160a060020a031633146139ae57600080fd5b600254604080517ff2fde38b000000000000000000000000000000000000000000000000000000008152600160a060020a0384811660048301529151919092169163f2fde38b91602480830192600092919082900301818387803b158015613a1557600080fd5b505af1158015613a29573d6000803e3d6000fd5b5050505050565b60608060ff8516158015613a42575083155b8015613a4c575082155b15613a67576040805160008152602081019091529150613b15565b60408051600580825260c08201909252906020820160a08038833901905050905086816000815181101515613a9857fe5b602090810290910101528051869082906001908110613ab357fe5b60209081029091010152805160ff86169082906002908110613ad157fe5b602090810290910101528051849082906003908110613aec57fe5b602090810290910101528051839082906004908110613b0757fe5b602090810290910101529050805b5095945050505050565b600080600080613b2f8787612899565b90935091508215801590613b435750848310155b1515613b4e57600080fd5b50600160a060020a0386166000908152600b60205260409020613b73873330896140f8565b6002546040805160e260020a63219e412d028152336004820152602481018690529051600160a060020a039092169163867904b49160448082019260009290919082900301818387803b158015613bc957600080fd5b505af1158015613bdd573d6000803e3d6000fd5b5050600254613bfb9250899150600160a060020a0316888686614336565b86600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015613c6757600080fd5b505af1158015613c7b573d6000803e3d6000fd5b505050506040513d6020811015613c9157600080fd5b50516040805160e060020a6370a082310281523060048201529051600160a060020a038c16916370a082319160248083019260209291908290030181600087803b158015613cde57600080fd5b505af1158015613cf2573d6000803e3d6000fd5b505050506040513d6020811015613d0857600080fd5b5051600185015460408051938452602084019290925263ffffffff1682820152519081900360600190a2509095945050505050565b6002546040805160e060020a6370a08231028152336004820152905160009283928392839283928392600160a060020a03909216916370a082319160248082019260209290919082900301818787803b158015613d9957600080fd5b505af1158015613dad573d6000803e3d6000fd5b505050506040513d6020811015613dc357600080fd5b5051881115613dd157600080fd5b613ddb898961242d565b90955093508415801590613def5750868510155b1515613dfa57600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015613e4d57600080fd5b505af1158015613e61573d6000803e3d6000fd5b505050506040513d6020811015613e7757600080fd5b50516040805160e060020a6370a082310281523060048201529051919450600160a060020a038b16916370a08231916024808201926020929091908290030181600087803b158015613ec857600080fd5b505af1158015613edc573d6000803e3d6000fd5b505050506040513d6020811015613ef257600080fd5b5051915081851080613f0d57508185148015613f0d57508288145b1515613f1557fe5b50600160a060020a038089166000908152600b6020526040808220600254825160e060020a63a24835d1028152336004820152602481018d905292519194169263a24835d1926044808201939182900301818387803b158015613f7757600080fd5b505af1158015613f8b573d6000803e3d6000fd5b50505050613f9b893033886140f8565b600254613fb490600160a060020a03168a8a8888614336565b88600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561402057600080fd5b505af1158015614034573d6000803e3d6000fd5b505050506040513d602081101561404a57600080fd5b50516040805160e060020a6370a082310281523060048201529051600160a060020a038e16916370a082319160248083019260209291908290030181600087803b15801561409757600080fd5b505af11580156140ab573d6000803e3d6000fd5b505050506040513d60208110156140c157600080fd5b5051600185015460408051938452602084019290925263ffffffff1682820152519081900360600190a25092979650505050505050565b60008085600160a060020a03166370a08231856040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561415657600080fd5b505af115801561416a573d6000803e3d6000fd5b505050506040513d602081101561418057600080fd5b50519150600160a060020a0385163014156142155785600160a060020a031663a9059cbb85856040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050600060405180830381600087803b1580156141f857600080fd5b505af115801561420c573d6000803e3d6000fd5b505050506142a1565b604080517f23b872dd000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152604482018690529151918816916323b872dd9160648082019260009290919082900301818387803b15801561428857600080fd5b505af115801561429c573d6000803e3d6000fd5b505050505b85600160a060020a03166370a08231856040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b1580156142fc57600080fd5b505af1158015614310573d6000803e3d6000fd5b505050506040513d602081101561432657600080fd5b505190508181116138d057600080fd5b7f8000000000000000000000000000000000000000000000000000000000000000811061435f57fe5b604080518481526020810184905280820183905290513391600160a060020a0387811692908916917f276856b36cbc45526a0ba64f44611557a2a8b68662c5388e9fe6d72e86e1c8cb919081900360600190a45050505050565b600054600160a060020a031633146143d057600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166379ba50976040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561442357600080fd5b505af1158015610e09573d6000803e3d6000fd5b60008083151561444a5760009150614469565b5082820282848281151561445a57fe5b041461446557600080fd5b8091505b5092915050565b60008080831161447f57600080fd5b828481151561448a57fe5b04949350505050565b600054600160a060020a031633146144aa57600080fd5b82600160a060020a03811615156144c057600080fd5b82600160a060020a03811615156144d657600080fd5b83600160a060020a0381163014156144ed57600080fd5b85600160a060020a031663a9059cbb86866040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050600060405180830381600087803b15801561455057600080fd5b505af1158015614564573d6000803e3d6000fd5b50505050505050505050560042616e636f72466f726d756c610000000000000000000000000000000000000042616e636f72436f6e76657274657255706772616465720000000000000000008a6a7f53b3c8fa1dc4b83e3f1be668c1b251ff8d44cdcb83eb3acec3fec6a788a165627a7a7230582071c69c7806572b1f290d0dfe635f8af0c09bcd79a08013223dc252a134b99a9800290000000000000000000000005e6f3bc1186132565946fea123181529e7aeafd800000000000000000000000052ae12abe5d8bd778bd5397f99ca900624cfadd4000000000000000000000000000000000000000000000000000000000007a120000000000000000000000000c0829421c1d260bd3cb3e0f06cfe2d52db2ce3150000000000000000000000000000000000000000000000000000000000030d40
Deployed Bytecode
0x6080604052600436106102d15763ffffffff60e060020a600035041663024c7ec781146102d65780630ca78923146102f25780630e53aae9146103245780631120a7761461037957806315226b54146103aa57806319b64015146103dd5780631e1401f8146103f557806321e6b53d1461043857806322742564146104595780632a2e2f0c146104c15780632c12b446146104ee5780632cc1cd651461050f57806338a5e016146105ac5780633aa0145a146105c15780633e8ff43f146105df5780633f4d2fc214610669578063415f12401461069857806341a5b33d146106b057806342906029146106da578063481c6a75146106ef57806349d10b64146107045780634af80f0e14610719578063500573511461073a57806354fd4d50146107af578063579cd3ca146107db5780635e35359e146108095780635e5144eb1461083357806361cd756e146108605780636a49d2c4146108755780636ebf36c01461089f57806371f52bf3146108d757806372b44b2c146108ec57806375892cf11461091057806379ba50971461093d5780637b103999146109525780638da5cb5b146109675780638e3047e01461097c57806392d1abb7146109a6578063935e2ae1146109bb57806394c275ad146109df5780639b99a8e2146109f4578063a2c4c33614610a09578063b3a426d514610a2d578063b4a176d314610ace578063bf75455814610ae3578063c45d3d9214610b0c578063c8c2fe6c14610b21578063c976a35914610b36578063ca1d209d14610b4b578063cf73266a14610b63578063d031370b14610b8d578063d4ee1d9014610ba5578063d55ec69714610bba578063d66bd52414610bcf578063d895951214610bf0578063d924f0c314610c11578063e4dd22f614610c32578063e4edf85214610c95578063ecbca55d14610cb6578063f0843ba914610cd4578063f2fde38b14610d25578063fc0c546a14610d46578063fe417fa514610d5b575b600080fd5b3480156102e257600080fd5b506102f06004351515610d7f565b005b3480156102fe57600080fd5b506102f0600160a060020a036004351663ffffffff602435166044351515606435610dff565b34801561033057600080fd5b50610345600160a060020a0360043516610e0f565b6040805195865263ffffffff9094166020860152911515848401521515606084015215156080830152519081900360a00190f35b34801561038557600080fd5b5061038e610e61565b60408051600160a060020a039092168252519081900360200190f35b3480156103b657600080fd5b506103cb600160a060020a0360043516610e70565b60408051918252519081900360200190f35b3480156103e957600080fd5b5061038e600435610f24565b34801561040157600080fd5b5061041f600160a060020a0360043581169060243516604435610f50565b6040805192835260208301919091528051918290030190f35b34801561044457600080fd5b506102f0600160a060020a0360043516610fcd565b604080516020600480358082013583810280860185019096528085526103cb95369593946024949385019291829185019084908082843750949750508435955050506020830135926040810135925060ff606082013516915060808101359060a0013561101d565b3480156104cd57600080fd5b506103cb600160a060020a0360043581169060243516604435606435611046565b3480156104fa57600080fd5b506103cb600160a060020a0360043516611445565b34801561051b57600080fd5b50604080516020600480358082013583810280860185019096528085526103cb953695939460249493850192918291850190849080828437505060408051818801358901803560208181028481018201909552818452989b8a359b8a8c01359b919a909950606090910197509295509082019350918291850190849080828437509497506114a19650505050505050565b3480156105b857600080fd5b506102f0611854565b3480156105cd57600080fd5b506103cb60043560ff6024351661190a565b3480156105eb57600080fd5b506105f4611968565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561062e578181015183820152602001610616565b50505050905090810190601f16801561065b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561067557600080fd5b506102f0600160a060020a036004351663ffffffff6024351660443515156119f6565b3480156106a457600080fd5b506102f0600435611a05565b3480156106bc57600080fd5b506102f0600160a060020a0360043581169060243516604435611d0f565b3480156106e657600080fd5b5061038e611db9565b3480156106fb57600080fd5b5061038e611dc8565b34801561071057600080fd5b506102f0611dd7565b34801561072557600080fd5b506102f0600160a060020a0360043516611f63565b34801561074657600080fd5b50604080516020600480358082013583810280860185019096528085526103cb95369593946024949385019291829185019084908082843750949750508435955050506020830135926040810135925060ff606082013516915060808101359060a00135611fb4565b3480156107bb57600080fd5b506107c4611fce565b6040805161ffff9092168252519081900360200190f35b3480156107e757600080fd5b506107f0611ff1565b6040805163ffffffff9092168252519081900360200190f35b34801561081557600080fd5b506102f0600160a060020a0360043581169060243516604435612009565b34801561083f57600080fd5b506103cb600160a060020a036004358116906024351660443560643561211a565b34801561086c57600080fd5b5061038e612131565b34801561088157600080fd5b506102f0600160a060020a036004351663ffffffff60243516612140565b3480156108ab57600080fd5b506103cb600160a060020a0360043581169060243581169060443590606435906084351660a435612378565b3480156108e357600080fd5b506107c461241e565b3480156108f857600080fd5b5061041f600160a060020a036004351660243561242d565b34801561091c57600080fd5b506103cb600160a060020a036004358116906024351660443560643561270d565b34801561094957600080fd5b506102f061271e565b34801561095e57600080fd5b5061038e612799565b34801561097357600080fd5b5061038e6127a8565b34801561098857600080fd5b5061041f600160a060020a03600435811690602435166044356127b7565b3480156109b257600080fd5b506103cb6127c5565b3480156109c757600080fd5b506102f0600160a060020a03600435166024356127ca565b3480156109eb57600080fd5b506107f061287f565b348015610a0057600080fd5b506107c4612893565b348015610a1557600080fd5b5061041f600160a060020a0360043516602435612899565b604080516020600480358082013583810280860185019096528085526103cb953695939460249493850192918291850190849080828437505060408051818801358901803560208181028481018201909552818452989b8a359b8a8c01359b919a9099506060909101975092955090820193509182918501908490808284375094975050508335600160a060020a0316945050506020909101359050612b2c565b348015610ada57600080fd5b506102f0612e15565b348015610aef57600080fd5b50610af8612e4c565b604080519115158252519081900360200190f35b348015610b1857600080fd5b5061038e612e65565b348015610b2d57600080fd5b506102f0612e74565b348015610b4257600080fd5b50610af8612ef1565b348015610b5757600080fd5b506102f0600435612f12565b348015610b6f57600080fd5b5061041f600160a060020a036004358116906024351660443561321b565b348015610b9957600080fd5b5061038e60043561344b565b348015610bb157600080fd5b5061038e613473565b348015610bc657600080fd5b506102f0613482565b348015610bdb57600080fd5b50610345600160a060020a036004351661355e565b348015610bfc57600080fd5b506103cb600160a060020a03600435166135a4565b348015610c1d57600080fd5b506102f0600160a060020a03600435166135b5565b604080516020600480358082013583810280860185019096528085526103cb9536959394602494938501929182918501908490808284375094975050843595505050602083013592600160a060020a0360408201351692506060013590506135ee565b348015610ca157600080fd5b506102f0600160a060020a0360043516613614565b348015610cc257600080fd5b506102f063ffffffff6004351661367f565b604080516020600480358082013583810280860185019096528085526103cb953695939460249493850192918291850190849080828437509497505084359550505060209092013591506137649050565b348015610d3157600080fd5b506102f0600160a060020a036004351661377c565b348015610d5257600080fd5b5061038e6137d0565b348015610d6757600080fd5b506102f0600160a060020a03600435166024356137df565b60075460ff7401000000000000000000000000000000000000000090910416151581151514801590610db45750610db46138d8565b1515610dbf57600080fd5b60078054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b610e0984826127ca565b50505050565b600160a060020a03166000908152600b602052604090208054600190910154909163ffffffff82169160ff64010000000082048116926501000000000083048216926601000000000000900490911690565b600354600160a060020a031681565b600160a060020a0381166000908152600b602052604081206001015482906601000000000000900460ff161515610ea657600080fd5b6040805160e060020a6370a082310281523060048201529051600160a060020a038516916370a082319160248083019260209291908290030181600087803b158015610ef157600080fd5b505af1158015610f05573d6000803e3d6000fd5b505050506040513d6020811015610f1b57600080fd5b50519392505050565b6000600a82815481101515610f3557fe5b600091825260209091200154600160a060020a031692915050565b600080600160a060020a038581169085161415610f6c57600080fd5b600254600160a060020a0385811691161415610f9557610f8c8584612899565b91509150610fc5565b600254600160a060020a0386811691161415610fb557610f8c848461242d565b610fc085858561321b565b915091505b935093915050565b600054600160a060020a03163314610fe457600080fd5b600080516020614591833981519152610ffc816138ff565b600160a060020a0316331461101057600080fd5b61101982613997565b5050565b600061103a8888886110328b8a8a8a8a613a30565b600080612b2c565b98975050505050505050565b6000806000806000807f42616e636f724e6574776f726b00000000000000000000000000000000000000611079816138ff565b600160a060020a0316331461108d57600080fd5b876000811161109b57600080fd5b600160a060020a038c8116908c1614156110b457600080fd5b600254600160a060020a038c8116911614156110dc576110d58c8b8b613b1f565b9750611436565b600254600160a060020a038d8116911614156110fd576110d58b8b8b613d3d565b6111088c8c8c61321b565b9097509550861580159061111c5750888710155b151561112757600080fd5b600160a060020a03808d166000908152600b6020526040808220928e168252902090955093506111568b610e70565b925082871061116157fe5b61116d8c33308d6140f8565b6111798b30338a6140f8565b6111868c8c8c8a8a614336565b8b600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b1580156111f257600080fd5b505af1158015611206573d6000803e3d6000fd5b505050506040513d602081101561121c57600080fd5b81019080805190602001909291905050508e600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561128857600080fd5b505af115801561129c573d6000803e3d6000fd5b505050506040513d60208110156112b257600080fd5b5051600189015460408051938452602084019290925263ffffffff1682820152519081900360600190a28a600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561134857600080fd5b505af115801561135c573d6000803e3d6000fd5b505050506040513d602081101561137257600080fd5b81019080805190602001909291905050508d600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b1580156113de57600080fd5b505af11580156113f2573d6000803e3d6000fd5b505050506040513d602081101561140857600080fd5b5051600188015460408051938452602084019290925263ffffffff1682820152519081900360600190a28697505b50505050505050949350505050565b600160a060020a0381166000908152600b602052604081206001015482906601000000000000900460ff16151561147b57600080fd5b5050600160a060020a03166000908152600b602052604090206001015463ffffffff1690565b6000806000808451600014806114ce5750858560008151811015156114c257fe5b90602001906020020151145b15156114d957600080fd5b6115027f42616e636f7258000000000000000000000000000000000000000000000000006138ff565b925061152d7f42616e636f724e6574776f726b000000000000000000000000000000000000006138ff565b91506115587f424e54546f6b656e0000000000000000000000000000000000000000000000006138ff565b600160a060020a031688600081518110151561157057fe5b60209081029091010151600160a060020a03161461158d57600080fd5b604080517faafd6b76000000000000000000000000000000000000000000000000000000008152600481018890523360248201529051600160a060020a0385169163aafd6b769160448083019260209291908290030181600087803b1580156115f557600080fd5b505af1158015611609573d6000803e3d6000fd5b505050506040513d602081101561161f57600080fd5b50516002546040805160e060020a63a24835d1028152336004820152602481018490529051929350600160a060020a039091169163a24835d19160448082019260009290919082900301818387803b15801561167a57600080fd5b505af115801561168e573d6000803e3d6000fd5b50506002546040805160e260020a63219e412d028152600160a060020a03878116600483015260248201879052915191909216935063867904b49250604480830192600092919082900301818387803b1580156116ea57600080fd5b505af11580156116fe573d6000803e3d6000fd5b5050505081600160a060020a0316634de006cb89838a338a6000806040518863ffffffff1660e060020a028152600401808060200188815260200187815260200186600160a060020a0316600160a060020a031681526020018060200185600160a060020a0316600160a060020a0316815260200184815260200183810383528a818151815260200191508051906020019060200280838360005b838110156117b1578181015183820152602001611799565b50505050905001838103825286818151815260200191508051906020019060200280838360005b838110156117f05781810151838201526020016117d8565b505050509050019950505050505050505050602060405180830381600087803b15801561181c57600080fd5b505af1158015611830573d6000803e3d6000fd5b505050506040513d602081101561184657600080fd5b505198975050505050505050565b600054600160a060020a0316331461186b57600080fd5b600254604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600092600160a060020a0316916318160ddd91600480830192602092919082900301818787803b1580156118ca57600080fd5b505af11580156118de573d6000803e3d6000fd5b505050506040513d60208110156118f457600080fd5b50511161190057600080fd5b6119086143b9565b565b600c546000906119619060ff8416620f424081810a67ffffffffffffffff9081169361195593899363ffffffff680100000000000000009093048316900383160a9091169061443716565b9063ffffffff61447016565b9392505050565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156119ee5780601f106119c3576101008083540402835291602001916119ee565b820191906000526020600020905b8154815290600101906020018083116119d157829003601f168201915b505050505081565b611a008383612140565b505050565b60008060008060008060006001600a80549050111515611a2457600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015611a7757600080fd5b505af1158015611a8b573d6000803e3d6000fd5b505050506040513d6020811015611aa157600080fd5b50519650611abc6000805160206145718339815191526138ff565b6002546040805160e060020a63a24835d1028152336004820152602481018c90529051929850600160a060020a039091169163a24835d19160448082019260009290919082900301818387803b158015611b1557600080fd5b505af1158015611b29573d6000803e3d6000fd5b50505050600091505b600a5461ffff83161015611d0557600a805461ffff8416908110611b5257fe5b60009182526020808320909101546040805160e060020a6370a082310281523060048201529051600160a060020a03909216985088936370a082319360248084019491939192918390030190829087803b158015611baf57600080fd5b505af1158015611bc3573d6000803e3d6000fd5b505050506040513d6020811015611bd957600080fd5b5051600c54604080517fabfd231d000000000000000000000000000000000000000000000000000000008152600481018b90526024810184905263ffffffff9092166044830152606482018b905251919550600160a060020a0388169163abfd231d916084808201926020929091908290030181600087803b158015611c5e57600080fd5b505af1158015611c72573d6000803e3d6000fd5b505050506040513d6020811015611c8857600080fd5b5051600160a060020a0386166000908152600b602052604090209093509050611cb3853033866140f8565b6001810154604080518a8a038152858703602082015263ffffffff9092168282015251600160a060020a038716916000805160206145b1833981519152919081900360600190a2600190910190611b32565b5050505050505050565b600054600160a060020a03163314611d2657600080fd5b600254604080517f5e35359e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301526044820185905291519190921691635e35359e91606480830192600092919082900301818387803b158015611d9c57600080fd5b505af1158015611db0573d6000803e3d6000fd5b50505050505050565b600554600160a060020a031681565b600454600160a060020a031681565b60075460009074010000000000000000000000000000000000000000900460ff161580611e075750611e076138d8565b1515611e1257600080fd5b611e3b7f436f6e74726163745265676973747279000000000000000000000000000000006138ff565b600654909150600160a060020a03808316911614801590611e645750600160a060020a03811615155b1515611e6f57600080fd5b604080517fbb34534c0000000000000000000000000000000000000000000000000000000081527f436f6e747261637452656769737472790000000000000000000000000000000060048201529051600091600160a060020a0384169163bb34534c9160248082019260209290919082900301818787803b158015611ef357600080fd5b505af1158015611f07573d6000803e3d6000fd5b505050506040513d6020811015611f1d57600080fd5b5051600160a060020a03161415611f3357600080fd5b6006805460078054600160a060020a03808416600160a060020a0319928316179092559091169216919091179055565b600054600160a060020a03163314611f7a57600080fd5b80600160a060020a038116301415611f9157600080fd5b5060098054600160a060020a031916600160a060020a0392909216919091179055565b600061103a888888611fc98a8a8a8a8a613a30565b6114a1565b6007547501000000000000000000000000000000000000000000900461ffff1681565b600c5468010000000000000000900463ffffffff1681565b60006120226000805160206145918339815191526138ff565b600160a060020a0385166000908152600b60205260409020600101549091506601000000000000900460ff1615806120ec5750600254604080517f8da5cb5b00000000000000000000000000000000000000000000000000000000815290513092600160a060020a031691638da5cb5b9160048083019260209291908290030181600087803b1580156120b457600080fd5b505af11580156120c8573d6000803e3d6000fd5b505050506040513d60208110156120de57600080fd5b5051600160a060020a031614155b806121045750600054600160a060020a038281169116145b151561210f57600080fd5b610e09848484614493565b600061212885858585611046565b95945050505050565b600754600160a060020a031681565b600054600160a060020a0316331461215757600080fd5b600254604080517f8da5cb5b00000000000000000000000000000000000000000000000000000000815290513092600160a060020a031691638da5cb5b9160048083019260209291908290030181600087803b1580156121b657600080fd5b505af11580156121ca573d6000803e3d6000fd5b505050506040513d60208110156121e057600080fd5b5051600160a060020a031614156121f657600080fd5b81600160a060020a038116151561220c57600080fd5b82600160a060020a03811630141561222357600080fd5b8260008163ffffffff161180156122435750620f424063ffffffff821611155b151561224e57600080fd5b600254600160a060020a038681169116148015906122925750600160a060020a0385166000908152600b60205260409020600101546601000000000000900460ff16155b80156122b05750600c54620f424063ffffffff918216860190911611155b15156122bb57600080fd5b505050600160a060020a03919091166000818152600b60205260408120600180820180549284905566010000000000006501000000000063ffffffff1994851663ffffffff808a169190911765ffff0000000019169190911766ff000000000000191691909117909155600a805492830181559093527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8018054600160a060020a031916909317909255600c805492831692821690930116179055565b6040805160038082526080820190925260009160609190602082018380388339505060025482519293508a92600160a060020a0390911691508990849060009081106123c057fe5b9060200190602002018460018151811015156123d857fe5b9060200190602002018560028151811015156123f057fe5b600160a060020a039485166020918202909201015292821690925291909116905261103a81878787876135ee565b6000612428612893565b905090565b60008060008060008060008030600160a060020a0316600260009054906101000a9004600160a060020a0316600160a060020a0316638da5cb5b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561249657600080fd5b505af11580156124aa573d6000803e3d6000fd5b505050506040513d60208110156124c057600080fd5b5051600160a060020a0316146124d557600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff16151561250b57600080fd5b600160a060020a03808c166000908152600b6020908152604080832060025482517f18160ddd0000000000000000000000000000000000000000000000000000000081529251919c50909416936318160ddd93600480840194938390030190829087803b15801561257b57600080fd5b505af115801561258f573d6000803e3d6000fd5b505050506040513d60208110156125a557600080fd5b50516040805160e060020a6370a082310281523060048201529051919750600160a060020a038d16916370a08231916024808201926020929091908290030181600087803b1580156125f657600080fd5b505af115801561260a573d6000803e3d6000fd5b505050506040513d602081101561262057600080fd5b5051945061263b6000805160206145718339815191526138ff565b6001880154604080517f49f9b0f7000000000000000000000000000000000000000000000000000000008152600481018a90526024810189905263ffffffff9092166044830152606482018d905251919550600160a060020a038616916349f9b0f7916084808201926020929091908290030181600087803b1580156126c057600080fd5b505af11580156126d4573d6000803e3d6000fd5b505050506040513d60208110156126ea57600080fd5b505192506126f983600161190a565b9b928c90039a509198505050505050505050565b600061212885858585600080612378565b600154600160a060020a0316331461273557600080fd5b60015460008054604051600160a060020a0393841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a36001805460008054600160a060020a0319908116600160a060020a03841617909155169055565b600654600160a060020a031681565b600054600160a060020a031681565b600080610fc085858561321b565b600181565b60008054600160a060020a031633146127e257600080fd5b6000805160206145918339815191526127fa816138ff565b600160a060020a0316331461280e57600080fd5b600160a060020a0384166000908152600b602052604090206001015484906601000000000000900460ff16151561284457600080fd5b505050600160a060020a03919091166000908152600b6020526040902060018101805464ff0000000019168315156401000000000217905555565b600c54640100000000900463ffffffff1681565b600a5490565b60008060008060008060008030600160a060020a0316600260009054906101000a9004600160a060020a0316600160a060020a0316638da5cb5b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561290257600080fd5b505af1158015612916573d6000803e3d6000fd5b505050506040513d602081101561292c57600080fd5b5051600160a060020a03161461294157600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff16151561297757600080fd5b600160a060020a03808c166000908152600b6020908152604080832060025482517f18160ddd0000000000000000000000000000000000000000000000000000000081529251919c50909416936318160ddd93600480840194938390030190829087803b1580156129e757600080fd5b505af11580156129fb573d6000803e3d6000fd5b505050506040513d6020811015612a1157600080fd5b50516040805160e060020a6370a082310281523060048201529051919750600160a060020a038d16916370a08231916024808201926020929091908290030181600087803b158015612a6257600080fd5b505af1158015612a76573d6000803e3d6000fd5b505050506040513d6020811015612a8c57600080fd5b50519450612aa76000805160206145718339815191526138ff565b6001880154604080517f29a00e7c000000000000000000000000000000000000000000000000000000008152600481018a90526024810189905263ffffffff9092166044830152606482018d905251919550600160a060020a038616916329a00e7c916084808201926020929091908290030181600087803b1580156126c057600080fd5b600080845160001480612b56575086856000815181101515612b4a57fe5b90602001906020020151145b1515612b6157600080fd5b612b8a7f42616e636f724e6574776f726b000000000000000000000000000000000000006138ff565b9050341515612cd1576002548851600160a060020a039091169089906000908110612bb157fe5b90602001906020020151600160a060020a03161415612cad576002546040805160e060020a63a24835d1028152336004820152602481018a90529051600160a060020a039092169163a24835d19160448082019260009290919082900301818387803b158015612c2057600080fd5b505af1158015612c34573d6000803e3d6000fd5b50506002546040805160e260020a63219e412d028152600160a060020a038681166004830152602482018d9052915191909216935063867904b49250604480830192600092919082900301818387803b158015612c9057600080fd5b505af1158015612ca4573d6000803e3d6000fd5b50505050612cd1565b612cd1886000815181101515612cbf57fe5b9060200190602002015133838a6140f8565b80600160a060020a0316634de006cb348a8a8a338b8b8b6040518963ffffffff1660e060020a028152600401808060200188815260200187815260200186600160a060020a0316600160a060020a031681526020018060200185600160a060020a0316600160a060020a0316815260200184815260200183810383528a818151815260200191508051906020019060200280838360005b83811015612d80578181015183820152602001612d68565b50505050905001838103825286818151815260200191508051906020019060200280838360005b83811015612dbf578181015183820152602001612da7565b5050505090500199505050505050505050506020604051808303818588803b158015612dea57600080fd5b505af1158015612dfe573d6000803e3d6000fd5b50505050506040513d602081101561184657600080fd5b612e1d6138d8565b1515612e2857600080fd5b60075460068054600160a060020a031916600160a060020a03909216919091179055565b600c546c01000000000000000000000000900460ff1681565b600954600160a060020a031681565b600554600160a060020a03163314612e8b57600080fd5b600554600454604051600160a060020a0392831692909116907fbe4cc281795971a471c980e842627a7f1ea3892ddfce8c5b6357cd2611c1973290600090a36005805460048054600160a060020a0319908116600160a060020a03841617909155169055565b60075474010000000000000000000000000000000000000000900460ff1681565b60008060008060008060006001600a80549050111515612f3157600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015612f8457600080fd5b505af1158015612f98573d6000803e3d6000fd5b505050506040513d6020811015612fae57600080fd5b50519650612fc96000805160206145718339815191526138ff565b9550600091505b600a5461ffff831610156131a357600a805461ffff8416908110612ff057fe5b60009182526020808320909101546040805160e060020a6370a082310281523060048201529051600160a060020a03909216985088936370a082319360248084019491939192918390030190829087803b15801561304d57600080fd5b505af1158015613061573d6000803e3d6000fd5b505050506040513d602081101561307757600080fd5b5051600c54604080517f1da6bbfb000000000000000000000000000000000000000000000000000000008152600481018b90526024810184905263ffffffff9092166044830152606482018b905251919550600160a060020a03881691631da6bbfb916084808201926020929091908290030181600087803b1580156130fc57600080fd5b505af1158015613110573d6000803e3d6000fd5b505050506040513d602081101561312657600080fd5b5051600160a060020a0386166000908152600b602052604090209093509050613151853330866140f8565b600181015460408051898b018152868601602082015263ffffffff9092168282015251600160a060020a038716916000805160206145b1833981519152919081900360600190a2600190910190612fd0565b6002546040805160e260020a63219e412d028152336004820152602481018b90529051600160a060020a039092169163867904b49160448082019260009290919082900301818387803b1580156131f957600080fd5b505af115801561320d573d6000803e3d6000fd5b505050505050505050505050565b600080600080600080600030600160a060020a0316600260009054906101000a9004600160a060020a0316600160a060020a0316638da5cb5b6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561328357600080fd5b505af1158015613297573d6000803e3d6000fd5b505050506040513d60208110156132ad57600080fd5b5051600160a060020a0316146132c257600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff1615156132f857600080fd5b600160a060020a038a166000908152600b60205260409020600101548a906601000000000000900460ff16151561332e57600080fd5b600160a060020a03808d166000908152600b6020526040808220928e1682529020909750955061336b6000805160206145718339815191526138ff565b945084600160a060020a03166379c1b4506133858e610e70565b60018a015463ffffffff166133998f610e70565b60018b01546040805163ffffffff87811660e060020a028252600482019690965293851660248501526044840192909252929092166064820152608481018e9052905160a48083019260209291908290030181600087803b1580156133fd57600080fd5b505af1158015613411573d6000803e3d6000fd5b505050506040513d602081101561342757600080fd5b5051935061343684600261190a565b9c938d90039b50929950505050505050505050565b600a80548290811061345957fe5b600091825260209091200154600160a060020a0316905081565b600154600160a060020a031681565b60008054600160a060020a0316331461349a57600080fd5b6134b16000805160206145918339815191526138ff565b90506134bc8161377c565b600754604080517f90f58c96000000000000000000000000000000000000000000000000000000008152750100000000000000000000000000000000000000000090920461ffff16600483015251600160a060020a038316916390f58c9691602480830192600092919082900301818387803b15801561353b57600080fd5b505af115801561354f573d6000803e3d6000fd5b5050505061355b61271e565b50565b600b602052600090815260409020805460019091015463ffffffff81169060ff640100000000820481169165010000000000810482169166010000000000009091041685565b60006135af82610e70565b92915050565b600054600160a060020a031633146135cc57600080fd5b60038054600160a060020a031916600160a060020a0392909216919091179055565b600061360a8686866136038580808080613a30565b8787612b2c565b9695505050505050565b600054600160a060020a03163314806136375750600454600160a060020a031633145b151561364257600080fd5b600454600160a060020a038281169116141561365d57600080fd5b60058054600160a060020a031916600160a060020a0392909216919091179055565b600054600160a060020a03163314806136a25750600454600160a060020a031633145b15156136ad57600080fd5b60008163ffffffff16101580156136d85750600c5463ffffffff640100000000909104811690821611155b15156136e357600080fd5b600c546040805163ffffffff6801000000000000000090930483168152918316602083015280517f81cd2ffb37dd237c0e4e2a3de5265fcf9deb43d3e7801e80db9f1ccfba7ee6009281900390910190a1600c805463ffffffff90921668010000000000000000026bffffffff000000000000000019909216919091179055565b60006137748484846000806135ee565b949350505050565b600054600160a060020a0316331461379357600080fd5b600054600160a060020a03828116911614156137ae57600080fd5b60018054600160a060020a031916600160a060020a0392909216919091179055565b600254600160a060020a031681565b600354600160a060020a031633146137f657600080fd5b6002546040805160e060020a63a24835d1028152600160a060020a038581166004830152602482018590529151919092169163a24835d191604480830192600092919082900301818387803b15801561384e57600080fd5b505af1158015613862573d6000803e3d6000fd5b50506002546040805160e260020a63219e412d028152336004820152602481018690529051600160a060020a03909216935063867904b4925060448082019260009290919082900301818387803b1580156138bc57600080fd5b505af11580156138d0573d6000803e3d6000fd5b505050505050565b60008054600160a060020a0316331480612428575050600454600160a060020a0316331490565b600654604080517fbb34534c000000000000000000000000000000000000000000000000000000008152600481018490529051600092600160a060020a03169163bb34534c91602480830192602092919082900301818787803b15801561396557600080fd5b505af1158015613979573d6000803e3d6000fd5b505050506040513d602081101561398f57600080fd5b505192915050565b600054600160a060020a031633146139ae57600080fd5b600254604080517ff2fde38b000000000000000000000000000000000000000000000000000000008152600160a060020a0384811660048301529151919092169163f2fde38b91602480830192600092919082900301818387803b158015613a1557600080fd5b505af1158015613a29573d6000803e3d6000fd5b5050505050565b60608060ff8516158015613a42575083155b8015613a4c575082155b15613a67576040805160008152602081019091529150613b15565b60408051600580825260c08201909252906020820160a08038833901905050905086816000815181101515613a9857fe5b602090810290910101528051869082906001908110613ab357fe5b60209081029091010152805160ff86169082906002908110613ad157fe5b602090810290910101528051849082906003908110613aec57fe5b602090810290910101528051839082906004908110613b0757fe5b602090810290910101529050805b5095945050505050565b600080600080613b2f8787612899565b90935091508215801590613b435750848310155b1515613b4e57600080fd5b50600160a060020a0386166000908152600b60205260409020613b73873330896140f8565b6002546040805160e260020a63219e412d028152336004820152602481018690529051600160a060020a039092169163867904b49160448082019260009290919082900301818387803b158015613bc957600080fd5b505af1158015613bdd573d6000803e3d6000fd5b5050600254613bfb9250899150600160a060020a0316888686614336565b86600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015613c6757600080fd5b505af1158015613c7b573d6000803e3d6000fd5b505050506040513d6020811015613c9157600080fd5b50516040805160e060020a6370a082310281523060048201529051600160a060020a038c16916370a082319160248083019260209291908290030181600087803b158015613cde57600080fd5b505af1158015613cf2573d6000803e3d6000fd5b505050506040513d6020811015613d0857600080fd5b5051600185015460408051938452602084019290925263ffffffff1682820152519081900360600190a2509095945050505050565b6002546040805160e060020a6370a08231028152336004820152905160009283928392839283928392600160a060020a03909216916370a082319160248082019260209290919082900301818787803b158015613d9957600080fd5b505af1158015613dad573d6000803e3d6000fd5b505050506040513d6020811015613dc357600080fd5b5051881115613dd157600080fd5b613ddb898961242d565b90955093508415801590613def5750868510155b1515613dfa57600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015613e4d57600080fd5b505af1158015613e61573d6000803e3d6000fd5b505050506040513d6020811015613e7757600080fd5b50516040805160e060020a6370a082310281523060048201529051919450600160a060020a038b16916370a08231916024808201926020929091908290030181600087803b158015613ec857600080fd5b505af1158015613edc573d6000803e3d6000fd5b505050506040513d6020811015613ef257600080fd5b5051915081851080613f0d57508185148015613f0d57508288145b1515613f1557fe5b50600160a060020a038089166000908152600b6020526040808220600254825160e060020a63a24835d1028152336004820152602481018d905292519194169263a24835d1926044808201939182900301818387803b158015613f7757600080fd5b505af1158015613f8b573d6000803e3d6000fd5b50505050613f9b893033886140f8565b600254613fb490600160a060020a03168a8a8888614336565b88600160a060020a03166000805160206145b1833981519152600260009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561402057600080fd5b505af1158015614034573d6000803e3d6000fd5b505050506040513d602081101561404a57600080fd5b50516040805160e060020a6370a082310281523060048201529051600160a060020a038e16916370a082319160248083019260209291908290030181600087803b15801561409757600080fd5b505af11580156140ab573d6000803e3d6000fd5b505050506040513d60208110156140c157600080fd5b5051600185015460408051938452602084019290925263ffffffff1682820152519081900360600190a25092979650505050505050565b60008085600160a060020a03166370a08231856040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561415657600080fd5b505af115801561416a573d6000803e3d6000fd5b505050506040513d602081101561418057600080fd5b50519150600160a060020a0385163014156142155785600160a060020a031663a9059cbb85856040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050600060405180830381600087803b1580156141f857600080fd5b505af115801561420c573d6000803e3d6000fd5b505050506142a1565b604080517f23b872dd000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152604482018690529151918816916323b872dd9160648082019260009290919082900301818387803b15801561428857600080fd5b505af115801561429c573d6000803e3d6000fd5b505050505b85600160a060020a03166370a08231856040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b1580156142fc57600080fd5b505af1158015614310573d6000803e3d6000fd5b505050506040513d602081101561432657600080fd5b505190508181116138d057600080fd5b7f8000000000000000000000000000000000000000000000000000000000000000811061435f57fe5b604080518481526020810184905280820183905290513391600160a060020a0387811692908916917f276856b36cbc45526a0ba64f44611557a2a8b68662c5388e9fe6d72e86e1c8cb919081900360600190a45050505050565b600054600160a060020a031633146143d057600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a03166379ba50976040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561442357600080fd5b505af1158015610e09573d6000803e3d6000fd5b60008083151561444a5760009150614469565b5082820282848281151561445a57fe5b041461446557600080fd5b8091505b5092915050565b60008080831161447f57600080fd5b828481151561448a57fe5b04949350505050565b600054600160a060020a031633146144aa57600080fd5b82600160a060020a03811615156144c057600080fd5b82600160a060020a03811615156144d657600080fd5b83600160a060020a0381163014156144ed57600080fd5b85600160a060020a031663a9059cbb86866040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050600060405180830381600087803b15801561455057600080fd5b505af1158015614564573d6000803e3d6000fd5b50505050505050505050560042616e636f72466f726d756c610000000000000000000000000000000000000042616e636f72436f6e76657274657255706772616465720000000000000000008a6a7f53b3c8fa1dc4b83e3f1be668c1b251ff8d44cdcb83eb3acec3fec6a788a165627a7a7230582071c69c7806572b1f290d0dfe635f8af0c09bcd79a08013223dc252a134b99a980029
Deployed Bytecode Sourcemap
28231:41893:0:-;;;;;;;;;-1:-1:-1;;;28231:41893:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17895:272;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17895:272:0;;;;;;;;;69358:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;69358:218:0;-1:-1:-1;;;;;69358:218:0;;;;;;;;;;;;;;;68392:284;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;68392:284:0;-1:-1:-1;;;;;68392:284:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23636:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23636:22:0;;;;;;;;-1:-1:-1;;;;;23636:22:0;;;;;;;;;;;;;;40704:208;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40704:208:0;-1:-1:-1;;;;;40704:208:0;;;;;;;;;;;;;;;;;;;;;68750:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;68750:138:0;;;;;41380:555;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;41380:555:0;-1:-1:-1;;;;;41380:555:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34992:190;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;34992:190:0;-1:-1:-1;;;;;34992:190:0;;;;;67637:310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67637:310:0;;-1:-1:-1;;67637:310:0;;;-1:-1:-1;;;67637:310:0;;;;;;;;;;-1:-1:-1;67637:310:0;;;;;;;-1:-1:-1;67637:310:0;;;;;;;;;;46508:2017;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;46508:2017:0;-1:-1:-1;;;;;46508:2017:0;;;;;;;;;;;;;;40227:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40227:206:0;-1:-1:-1;;;;;40227:206:0;;;;;59092:1052;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;59092:1052:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59092:1052:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59092:1052:0;;;;;-1:-1:-1;59092:1052:0;;-1:-1:-1;59092:1052:0;;;;-1:-1:-1;59092:1052:0;;;;;;;;;;;;-1:-1:-1;59092:1052:0;;-1:-1:-1;59092:1052:0;;-1:-1:-1;;;;;;;59092:1052:0;35425:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35425:159:0;;;;36379:230;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;36379:230:0;;;;;;;;;29067:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29067:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29067:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69141:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;69141:143:0;-1:-1:-1;;;;;69141:143:0;;;;;;;;;;;;;63836:1311;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;63836:1311:0;;;;;25186:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25186:169:0;-1:-1:-1;;;;;25186:169:0;;;;;;;;;;;;10198:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10198:25:0;;;;10169:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10169:22:0;;;;16561:838;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16561:838:0;;;;34471:175;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;34471:175:0;-1:-1:-1;;;;;34471:175:0;;;;;68021:297;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;68021:297:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68021:297:0;;-1:-1:-1;;68021:297:0;;;-1:-1:-1;;;68021:297:0;;;;;;;;;;-1:-1:-1;68021:297:0;;;;;;;-1:-1:-1;68021:297:0;;;;;;;;;;29034:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29034:26:0;;;;;;;;;;;;;;;;;;;;;;;29901:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29901:31:0;;;;;;;;;;;;;;;;;;;;;;;37086:495;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37086:495:0;-1:-1:-1;;;;;37086:495:0;;;;;;;;;;;;66793:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;66793:210:0;-1:-1:-1;;;;;66793:210:0;;;;;;;;;;;;;;15670:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15670:37:0;;;;38504:653;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;38504:653:0;-1:-1:-1;;;;;38504:653:0;;;;;;;;;52573:405;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;52573:405:0;-1:-1:-1;;;;;52573:405:0;;;;;;;;;;;;;;;;;;;;;;;68962:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;68962:105:0;;;;43550:760;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;43550:760:0;-1:-1:-1;;;;;43550:760:0;;;;;;;67077:217;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;67077:217:0;-1:-1:-1;;;;;67077:217:0;;;;;;;;;;;;;;9739:187;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9739:187:0;;;;15581:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15581:33:0;;;;8713:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8713:20:0;;;;69872:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;69872:249:0;-1:-1:-1;;;;;69872:249:0;;;;;;;;;;;;8051:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8051:63:0;;;;39625:391;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;39625:391:0;-1:-1:-1;;;;;39625:391:0;;;;;;;29658:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29658:34:0;;;;33987:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33987:112:0;;;;42356:776;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42356:776:0;-1:-1:-1;;;;;42356:776:0;;;;;;;55872:1608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55872:1608:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55872:1608:0;;;;;-1:-1:-1;55872:1608:0;;-1:-1:-1;55872:1608:0;;;;-1:-1:-1;55872:1608:0;;;;;;;;;;;;-1:-1:-1;55872:1608:0;;-1:-1:-1;;;55872:1608:0;;-1:-1:-1;;;;;55872:1608:0;;-1:-1:-1;;;55872:1608:0;;;;;;-1:-1:-1;55872:1608:0;;17478:209;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17478:209:0;;;;30022:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30022:37:0;;;;;;;;;;;;;;;;;;;;;;29114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29114:37:0;;;;11440:202;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11440:202:0;;;;15760:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15760:21:0;;;;62138:1300;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;62138:1300:0;;;;;44928:1063;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44928:1063:0;-1:-1:-1;;;;;44928:1063:0;;;;;;;;;;;;29250:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29250:34:0;;;;;8740:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8740:23:0;;;;37821:284;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37821:284:0;;;;29387:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29387:44:0;-1:-1:-1;;;;;29387:44:0;;;;;69650:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;69650:148:0;-1:-1:-1;;;;;69650:148:0;;;;;26167:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;26167:92:0;-1:-1:-1;;;;;26167:92:0;;;;;53834:347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53834:347:0;;-1:-1:-1;;53834:347:0;;;-1:-1:-1;;;53834:347:0;;;;;-1:-1:-1;;;;;53834:347:0;;;;;;-1:-1:-1;53834:347:0;;;;-1:-1:-1;53834:347:0;;11187:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11187:160:0;-1:-1:-1;;;;;11187:160:0;;;;;35781:290;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35781:290:0;;;;;;;67368:195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67368:195:0;;-1:-1:-1;;67368:195:0;;;-1:-1:-1;;;67368:195:0;;;;;;-1:-1:-1;67368:195:0;;-1:-1:-1;67368:195:0;9508:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9508:140:0;-1:-1:-1;;;;;9508:140:0;;;;;23579:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23579:24:0;;;;25674:352;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25674:352:0;-1:-1:-1;;;;;25674:352:0;;;;;;;17895:272;18021:9;;;;;;;;:23;;;;;;;;;:36;;;18048:9;:7;:9::i;:::-;18013:45;;;;;;;;18137:9;:22;;;;;;;-1:-1:-1;;18137:22:0;;;;;;;;;17895:272::o;69358:218::-;69507:61;69535:15;69552;69507:27;:61::i;:::-;69358:218;;;;:::o;68392:284::-;-1:-1:-1;;;;;68523:18:0;68451:7;68523:18;;;:8;:18;;;;;68559:22;;68583:13;;;;;68559:22;;68583:13;;;;68598:31;;;;;;;68631:21;;;;;;68654:13;;;;;;;68392:284::o;23636:22::-;;;-1:-1:-1;;;;;23636:22:0;;:::o;40704:208::-;-1:-1:-1;;;;;33002:18:0;;40843:7;33002:18;;;:8;:18;;;;;:24;;;:18;;:24;;;;;32994:33;;;;;;;;40875:29;;;-1:-1:-1;;;;;40875:29:0;;40899:4;40875:29;;;;;;-1:-1:-1;;;;;40875:23:0;;;;;:29;;;;;;;;;;;;;;-1:-1:-1;40875:23:0;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;40875:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40875:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40875:29:0;;40704:208;-1:-1:-1;;;40704:208:0:o;68750:138::-;68812:11;68843:29;68873:6;68843:37;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;68843:37:0;;68750:138;-1:-1:-1;;68750:138:0:o;41380:555::-;41483:7;;-1:-1:-1;;;;;41520:22:0;;;;;;;;41512:31;;;;;;41655:5;;-1:-1:-1;;;;;41643:17:0;;;41655:5;;41643:17;41639:174;;;41682:38;41700:10;41712:7;41682:17;:38::i;:::-;41675:45;;;;;;41639:174;41754:5;;-1:-1:-1;;;;;41740:19:0;;;41754:5;;41740:19;41736:77;;;41781:32;41795:8;41805:7;41781:13;:32::i;41736:77::-;41875:52;41897:10;41909:8;41919:7;41875:21;:52::i;:::-;41868:59;;;;41380:555;;;;;;;:::o;34992:190::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;-1:-1:-1;;;;;;;;;;;16085:24:0;16095:13;16085:9;:24::i;:::-;-1:-1:-1;;;;;16071:38:0;:10;:38;16063:47;;;;;;35135:39;35164:9;35135:28;:39::i;:::-;9251:1;34992:190;:::o;67637:310::-;67802:7;67829:110;67854:5;67861:7;67870:10;67882:41;67895:7;67904:6;67912:2;67916;67920;67882:12;:41::i;:::-;67933:1;67937;67829:24;:110::i;:::-;67822:117;67637:310;-1:-1:-1;;;;;;;;67637:310:0:o;46508:2017::-;46717:7;47057:14;47082:17;47390:27;47451:25;47578:24;46646:14;16085:24;16095:13;16085:9;:24::i;:::-;-1:-1:-1;;;;;16071:38:0;:10;:38;16063:47;;;;;;46687:10;13729:1;13719:11;;13711:20;;;;;;-1:-1:-1;;;;;46750:22:0;;;;;;;;46742:31;;;;;;46885:5;;-1:-1:-1;;;;;46873:17:0;;;46885:5;;46873:17;46869:175;;;46912:36;46916:10;46928:7;46937:10;46912:3;:36::i;:::-;46905:43;;;;46869:175;46982:5;;-1:-1:-1;;;;;46968:19:0;;;46982:5;;46968:19;46964:80;;;47009:35;47014:8;47024:7;47033:10;47009:4;:35::i;46964:80::-;47176:52;47198:10;47210:8;47220:7;47176:21;:52::i;:::-;47154:74;;-1:-1:-1;47154:74:0;-1:-1:-1;47341:11:0;;;;;:35;;;47366:10;47356:6;:20;;47341:35;47333:44;;;;;;;;-1:-1:-1;;;;;47420:20:0;;;;;;;:8;:20;;;;;;47479:18;;;;;;;47420:20;;-1:-1:-1;47479:18:0;-1:-1:-1;47605:27:0;47488:8;47605:17;:27::i;:::-;47578:54;-1:-1:-1;47650:25:0;;;47643:33;;;;47758:57;47777:10;47789;47801:4;47807:7;47758:18;:57::i;:::-;47891:54;47910:8;47920:4;47926:10;47938:6;47891:18;:54::i;:::-;48126:73;48150:10;48162:8;48172:7;48181:6;48189:9;48126:23;:73::i;:::-;48309:10;-1:-1:-1;;;;;48293:95:0;-1:-1:-1;;;;;;;;;;;48321:5:0;;;;;;;;;-1:-1:-1;;;;;48321:5:0;-1:-1:-1;;;;;48321:17:0;;:19;;;;;-1:-1:-1;;;48321:19:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48321:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48321:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48321:19:0;;;;;;;;;;;;;;;;48342:10;-1:-1:-1;;;;;48342:20:0;;48363:4;48342:26;;;;;-1:-1:-1;;;48342:26:0;;;;;;;-1:-1:-1;;;;;48342:26:0;-1:-1:-1;;;;;48342:26:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48342:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48342:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48342:26:0;48370:17;;;;48293:95;;;;;;48342:26;48293:95;;;;;;48370:17;;48293:95;;;;;;;;;;;;;48420:8;-1:-1:-1;;;;;48404:89:0;-1:-1:-1;;;;;;;;;;;48430:5:0;;;;;;;;;-1:-1:-1;;;;;48430:5:0;-1:-1:-1;;;;;48430:17:0;;:19;;;;;-1:-1:-1;;;48430:19:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48430:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48430:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48430:19:0;;;;;;;;;;;;;;;;48451:8;-1:-1:-1;;;;;48451:18:0;;48470:4;48451:24;;;;;-1:-1:-1;;;48451:24:0;;;;;;;-1:-1:-1;;;;;48451:24:0;-1:-1:-1;;;;;48451:24:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48451:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48451:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48451:24:0;48477:15;;;;48404:89;;;;;;48451:24;48404:89;;;;;;48477:15;;48404:89;;;;;;;;;;;;;48511:6;48504:13;;13742:1;16121;46508:2017;;;;;;;;;;;;:::o;40227:206::-;-1:-1:-1;;;;;33002:18:0;;40364:7;33002:18;;;:8;:18;;;;;:24;;;:18;;:24;;;;;32994:33;;;;;;;;-1:-1:-1;;;;;;;40396:23:0;;;;;:8;:23;;;;;:29;;;;;;40227:206::o;59092:1052::-;59292:7;59473:16;59532:28;59786:14;59403:10;:17;59424:1;59403:22;:56;;;;59446:13;59429:10;59440:1;59429:13;;;;;;;;;;;;;;;;;;:30;59403:56;59395:65;;;;;;;;59501:19;59511:8;59501:9;:19::i;:::-;59473:48;;59578:25;59588:14;59578:9;:25::i;:::-;59532:72;;59696:20;59706:9;59696;:20::i;:::-;-1:-1:-1;;;;;59684:32:0;:5;59690:1;59684:8;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59684:32:0;;59676:41;;;;;;59803:53;;;;;;;;;;;;59845:10;59803:53;;;;;;-1:-1:-1;;;;;59803:26:0;;;;;:53;;;;;;;;;;;;;;-1:-1:-1;59803:26:0;:53;;;5:2:-1;;;;30:1;27;20:12;5:2;59803:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59803:53:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59803:53:0;59936:5;;:33;;;-1:-1:-1;;;;;59936:33:0;;59950:10;59936:33;;;;;;;;;;;;59803:53;;-1:-1:-1;;;;;;59936:5:0;;;;:13;;:33;;;;;:5;;:33;;;;;;;;:5;;:33;;;5:2:-1;;;;30:1;27;20:12;5:2;59936:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;59980:5:0;;:34;;;-1:-1:-1;;;;;59980:34:0;;-1:-1:-1;;;;;59980:34:0;;;;;;;;;;;;;;;:5;;;;;-1:-1:-1;59980:11:0;;-1:-1:-1;59980:34:0;;;;;:5;;:34;;;;;;;:5;;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;59980:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59980:34:0;;;;60034:13;-1:-1:-1;;;;;60034:36:0;;60071:5;60078:6;60086:10;60098;60110;60130:1;60134;60034:102;;;;;-1:-1:-1;;;60034:102:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60034:102:0;-1:-1:-1;;;;;60034:102:0;;;;;;;;;-1:-1:-1;;;;;60034:102:0;-1:-1:-1;;;;;60034:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;60034:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;60034:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60034:102:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60034:102:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60034:102:0;;59092:1052;-1:-1:-1;;;;;;;;59092:1052:0:o;35425:159::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;33558:5;;:19;;;;;;;;33580:1;;-1:-1:-1;;;;;33558:5:0;;:17;;:19;;;;;;;;;;;;;;33580:1;33558:5;:19;;;5:2:-1;;;;30:1;27;20:12;5:2;33558:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33558:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33558:19:0;:23;33550:32;;;;;;35548:28;:26;:28::i;:::-;35425:159::o;36379:230::-;36527:13;;36459:7;;36486:115;;36561:39;;;28494:7;36561:39;;;;36486:115;;;;:70;;:7;;36527:13;;;;;;;36499:41;;36498:57;;;36486:70;;;;:11;:70;:::i;:::-;:74;:115;:74;:115;:::i;:::-;36479:122;36379:230;-1:-1:-1;;;36379:230:0:o;29067:38::-;;;;;;;;;;;;;;;-1:-1:-1;;29067:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69141:143::-;69249:27;69260:6;69268:7;69249:10;:27::i;:::-;69141:143;;;:::o;63836:1311::-;63934:14;63981:22;64357:24;64392:22;64425:21;64462:8;64745:23;33744:1;33721:13;:20;;;;:24;33713:33;;;;;;;;63951:5;;;;;;;;;-1:-1:-1;;;;;63951:5:0;-1:-1:-1;;;;;63951:17:0;;:19;;;;;-1:-1:-1;;;63951:19:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;63951:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;63951:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;63951:19:0;;-1:-1:-1;64021:25:0;-1:-1:-1;;;;;;;;;;;64021:9:0;:25::i;:::-;64133:5;;:34;;;-1:-1:-1;;;;;64133:34:0;;64147:10;64133:34;;;;;;;;;;;;63981:66;;-1:-1:-1;;;;;;64133:5:0;;;;:13;;:34;;;;;:5;;:34;;;;;;;;:5;;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;64133:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64133:34:0;;;;64473:1;64462:12;;64457:683;64480:13;:20;64476:24;;;;64457:683;;;64537:13;:16;;;;;;;;;;;;;;;;;;;;;;;;64585:28;;;-1:-1:-1;;;;;64585:28:0;;64608:4;64585:28;;;;;;-1:-1:-1;;;;;64537:16:0;;;;-1:-1:-1;64537:16:0;;64585:22;;:28;;;;;64537:16;;64585:28;;;;;;;;;;64537:16;64585:28;;;5:2:-1;;;;30:1;27;20:12;5:2;64585:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64585:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;64585:28:0;64701:17;;64644:84;;;;;;;;;;;;;;;;;;64701:17;;;;64644:84;;;;;;;;;;;64585:28;;-1:-1:-1;;;;;;64644:32:0;;;;;:84;;;;;64585:28;;64644:84;;;;;;;;64701:17;64644:32;:84;;;5:2:-1;;;;30:1;27;20:12;5:2;64644:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64644:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;64644:84:0;-1:-1:-1;;;;;64771:22:0;;;;;;:8;64644:84;64771:22;;;;64644:84;;-1:-1:-1;64771:22:0;-1:-1:-1;64876:65:0;64780:12;64909:4;64915:10;64644:84;64876:18;:65::i;:::-;65114:13;;;;65034:94;;;65064:16;;;65034:94;;65082:30;;;65034:94;;;;65114:13;;;;65034:94;;;;;-1:-1:-1;;;;;65034:94:0;;;-1:-1:-1;;;;;;;;;;;65034:94:0;;;;;;;;;64502:3;;;;;64457:683;;;63836:1311;;;;;;;;:::o;25186:169::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;25304:5;;25291:56;;;;;;-1:-1:-1;;;;;25291:56:0;;;;;;;;;;;;;;;;;;;;;;25304:5;;;;;25291:34;;:56;;;;;25304:5;;25291:56;;;;;;;25304:5;;25291:56;;;5:2:-1;;;;30:1;27;20:12;5:2;25291:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25291:56:0;;;;25186:169;;;:::o;10198:25::-;;;-1:-1:-1;;;;;10198:25:0;;:::o;10169:22::-;;;-1:-1:-1;;;;;10169:22:0;;:::o;16561:838::-;16665:9;;16743:19;;16665:9;;;;;16664:10;;:23;;;16678:9;:7;:9::i;:::-;16656:32;;;;;;;;16765:28;16775:17;16765:9;:28::i;:::-;16913:8;;16743:50;;-1:-1:-1;;;;;;16890:32:0;;;16913:8;;16890:32;;;;:61;;-1:-1:-1;;;;;;16926:25:0;;;;16890:61;16882:70;;;;;;;;17067:59;;;;;;17108:17;17067:59;;;;;;17138:1;;-1:-1:-1;;;;;17067:40:0;;;;;:59;;;;;;;;;;;;;;;17138:1;17067:40;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;17067:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17067:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17067:59:0;-1:-1:-1;;;;;17067:73:0;;;17059:82;;;;;;17248:8;;;17233:12;:23;;-1:-1:-1;;;;;17248:8:0;;;-1:-1:-1;;;;;;17233:23:0;;;;;;;17350:41;;;;;;;;;;;16561:838::o;34471:175::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;34578:10;-1:-1:-1;;;;;14069:25:0;;14089:4;14069:25;;14061:34;;;;;;-1:-1:-1;34606:19:0;:32;;-1:-1:-1;;;;;;34606:32:0;-1:-1:-1;;;;;34606:32:0;;;;;;;;;;34471:175::o;68021:297::-;68180:7;68207:103;68228:5;68235:10;68247:13;68262:47;68275:13;68290:6;68298:2;68302;68306;68262:12;:47::i;:::-;68207:20;:103::i;29034:26::-;;;;;;;;;:::o;29901:31::-;;;;;;;;;:::o;37086:495::-;37178:25;37206:36;-1:-1:-1;;;;;;;;;;;37206:9:0;:36::i;:::-;-1:-1:-1;;;;;37433:16:0;;;;;;:8;:16;;;;;:22;;;37178:64;;-1:-1:-1;37433:22:0;;;;;37432:23;;:57;;-1:-1:-1;37459:5:0;;:13;;;;;;;;37484:4;;-1:-1:-1;;;;;37459:5:0;;:11;;:13;;;;;;;;;;;;;;:5;;:13;;;5:2:-1;;;;30:1;27;20:12;5:2;37459:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37459:13:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37459:13:0;-1:-1:-1;;;;;37459:30:0;;;37432:57;:87;;;-1:-1:-1;37493:5:0;;-1:-1:-1;;;;;37493:26:0;;;:5;;:26;37432:87;37424:96;;;;;;;;37531:42;37552:6;37560:3;37565:7;37531:20;:42::i;66793:210::-;66908:7;66936:58;66952:10;66964:8;66974:7;66983:10;66936:15;:58::i;:::-;66929:65;66793:210;-1:-1:-1;;;;;66793:210:0:o;15670:37::-;;;-1:-1:-1;;;;;15670:37:0;;:::o;38504:653::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;24225:5;;:13;;;;;;;;24250:4;;-1:-1:-1;;;;;24225:5:0;;:11;;:13;;;;;;;;;;;;;;:5;;:13;;;5:2:-1;;;;30:1;27;20:12;5:2;24225:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24225:13:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24225:13:0;-1:-1:-1;;;;;24225:30:0;;;24217:39;;;;;;38634:6;-1:-1:-1;;;;;13890:22:0;;;;13882:31;;;;;;38659:6;-1:-1:-1;;;;;14069:25:0;;14089:4;14069:25;;14061:34;;;;;;38694:6;33355:1;33346:6;:10;;;:40;;;;-1:-1:-1;28428:7:0;33360:26;;;;;33346:40;33338:49;;;;;;;;38736:5;;-1:-1:-1;;;;;38726:15:0;;;38736:5;;38726:15;;;;:42;;-1:-1:-1;;;;;;38746:16:0;;;;;;:8;:16;;;;;:22;;;;;;;;38745:23;38726:42;:92;;;;-1:-1:-1;38772:17:0;;28428:7;38772:46;:17;;;:26;;:46;;;;;38726:92;38718:101;;;;;;;;-1:-1:-1;;;;;;;;38850:16:0;;;;;;;;:8;:16;;;;;:22;;;;:31;;38951:35;;;;39045:29;38997:37;-1:-1:-1;;38850:31:0;;;;;;;;;;;-1:-1:-1;;38997:37:0;;;;;-1:-1:-1;;39045:29:0;;;;;;;;39085:13;27:10:-1;;23:18;;;45:23;;39085:26:0;;;;;;;-1:-1:-1;;;;;;39085:26:0;;;;;;;39122:17;:27;;;;;;;;;;;;;;;38504:653::o;52573:405::-;52788:20;;;52806:1;52788:20;;;;;;;;;52740:7;;52760:25;;52788:20;;;;52760:25;;105:10:-1;52788:20:0;88:34:-1;-1:-1;;52862:5:0;;52820:7;;;;-1:-1:-1;52850:10:0;;-1:-1:-1;;;;;52862:5:0;;;;-1:-1:-1;52869:8:0;;52820:7;;52862:5;;52820:7;;;;;;;;;;;;;52829:4;52834:1;52829:7;;;;;;;;;;;;;;;;;52838:4;52843:1;52838:7;;;;;;;;;;-1:-1:-1;;;;;52819:59:0;;;52838:7;;;;;;;;52819:59;;;;;;;;;;;;;52896:74;52910:4;52916:7;52925:10;52937:17;52956:13;52896;:74::i;68962:105::-;69014:6;69040:19;:17;:19::i;:::-;69033:26;;68962:105;:::o;43550:760::-;43722:7;43731;43756:23;43816:19;43868:22;43933;44010:14;44122:19;24091:4;-1:-1:-1;;;;;24066:30:0;:5;;;;;;;;;-1:-1:-1;;;;;24066:5:0;-1:-1:-1;;;;;24066:11:0;;:13;;;;;-1:-1:-1;;;24066:13:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24066:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24066:13:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24066:13:0;-1:-1:-1;;;;;24066:30:0;;24058:39;;;;;;-1:-1:-1;;;;;33002:18:0;;;;;;:8;:18;;;;;:24;;;:18;;:24;;;;;32994:33;;;;;;;;-1:-1:-1;;;;;43782:23:0;;;;;;;:8;:23;;;;;;;;43838:5;;:19;;;;;;;43782:23;;-1:-1:-1;43838:5:0;;;;:17;;:19;;;;;43782:23;43838:19;;;;;;;:5;:19;;;5:2:-1;;;;30:1;27;20:12;5:2;43838:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43838:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43838:19:0;43893:29;;;-1:-1:-1;;;;;43893:29:0;;43917:4;43893:29;;;;;;43838:19;;-1:-1:-1;;;;;;43893:23:0;;;;;:29;;;;;43838:19;;43893:29;;;;;;;;-1:-1:-1;43893:23:0;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;43893:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43893:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43893:29:0;;-1:-1:-1;43973:25:0;-1:-1:-1;;;;;;;;;;;43973:9:0;:25::i;:::-;44084:13;;;;44027:84;;;;;;;;;;;;;;;;;;44084:13;;;;44027:84;;;;;;;;;;;43933:66;;-1:-1:-1;;;;;;44027:27:0;;;;;:84;;;;;;;;;;;;;;;44084:13;44027:27;:84;;;5:2:-1;;;;30:1;27;20:12;5:2;44027:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44027:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44027:84:0;;-1:-1:-1;44144:25:0;44027:84;44167:1;44144:14;:25::i;:::-;44122:47;44281:20;;;;;-1:-1:-1;43550:760:0;;-1:-1:-1;;;;;;;;;43550:760:0:o;67077:217::-;67193:7;67220:66;67229:10;67241:8;67251:7;67260:10;67280:1;67284;67220:8;:66::i;9739:187::-;9806:8;;-1:-1:-1;;;;;9806:8:0;9792:10;:22;9784:31;;;;;;9850:8;;;9843:5;;9831:28;;-1:-1:-1;;;;;9850:8:0;;;;9843:5;;;;9831:28;;;9878:8;;;;9870:16;;-1:-1:-1;;;;;;9870:16:0;;;-1:-1:-1;;;;;9878:8:0;;9870:16;;;;9897:21;;;9739:187::o;15581:33::-;;;-1:-1:-1;;;;;15581:33:0;;:::o;8713:20::-;;;-1:-1:-1;;;;;8713:20:0;;:::o;69872:249::-;70007:7;70016;70043:70;70065:19;70086:17;70105:7;70043:21;:70::i;8051:63::-;8108:6;8051:63;:::o;39625:391::-;39843:23;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;-1:-1:-1;;;;;;;;;;;16085:24:0;16095:13;16085:9;:24::i;:::-;-1:-1:-1;;;;;16071:38:0;:10;:38;16063:47;;;;;;-1:-1:-1;;;;;33002:18:0;;;;;;:8;:18;;;;;:24;;;:18;;:24;;;;;32994:33;;;;;;;;-1:-1:-1;;;;;;;;39869:23:0;;;;;;;;:8;:23;;;;;39903:31;;;:54;;-1:-1:-1;;39903:54:0;39937:20;;;39903:54;;;;;39968:40;39625:391::o;29658:34::-;;;;;;;;;:::o;33987:112::-;34070:13;:20;33987:112;:::o;42356:776::-;42535:7;42544;42569:23;42631:19;42683:22;42748;42825:14;42944:19;24091:4;-1:-1:-1;;;;;24066:30:0;:5;;;;;;;;;-1:-1:-1;;;;;24066:5:0;-1:-1:-1;;;;;24066:11:0;;:13;;;;;-1:-1:-1;;;24066:13:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24066:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24066:13:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24066:13:0;-1:-1:-1;;;;;24066:30:0;;24058:39;;;;;;-1:-1:-1;;;;;33002:18:0;;;;;;:8;:18;;;;;:24;;;:18;;:24;;;;;32994:33;;;;;;;;-1:-1:-1;;;;;42595:23:0;;;;;;;:8;:23;;;;;;;;42653:5;;:19;;;;;;;42595:23;;-1:-1:-1;42653:5:0;;;;:17;;:19;;;;;42595:23;42653:19;;;;;;;:5;:19;;;5:2:-1;;;;30:1;27;20:12;5:2;42653:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42653:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42653:19:0;42708:29;;;-1:-1:-1;;;;;42708:29:0;;42732:4;42708:29;;;;;;42653:19;;-1:-1:-1;;;;;;42708:23:0;;;;;:29;;;;;42653:19;;42708:29;;;;;;;;-1:-1:-1;42708:23:0;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;42708:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42708:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42708:29:0;;-1:-1:-1;42788:25:0;-1:-1:-1;;;;;;;;;;;42788:9:0;:25::i;:::-;42903:13;;;;42842:91;;;;;;;;;;;;;;;;;;42903:13;;;;42842:91;;;;;;;;;;;42748:66;;-1:-1:-1;;;;;;42842:31:0;;;;;:91;;;;;;;;;;;;;;;42903:13;42842:31;:91;;;5:2:-1;;;;30:1;27;20:12;55872:1608:0;56094:7;56191:28;56127:10;:17;56148:1;56127:22;:50;;;;56170:7;56153:10;56164:1;56153:13;;;;;;;;;;;;;;;;;;:24;56127:50;56119:59;;;;;;;;56237:25;56247:14;56237:9;:25::i;:::-;56191:72;-1:-1:-1;56446:9:0;:14;56442:803;;;56743:5;;56731:8;;-1:-1:-1;;;;;56743:5:0;;;;56731;;56743;;56731:8;;;;;;;;;;;;;;-1:-1:-1;;;;;56731:17:0;;56727:507;;;56769:5;;:34;;;-1:-1:-1;;;;;56769:34:0;;56783:10;56769:34;;;;;;;;;;;;-1:-1:-1;;;;;56769:5:0;;;;:13;;:34;;;;;:5;;:34;;;;;;;;:5;;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;56769:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;56893:5:0;;:35;;;-1:-1:-1;;;;;56893:35:0;;-1:-1:-1;;;;;56893:35:0;;;;;;;;;;;;;;;:5;;;;;-1:-1:-1;56893:11:0;;-1:-1:-1;56893:35:0;;;;;:5;;:35;;;;;;;:5;;:35;;;5:2:-1;;;;30:1;27;20:12;5:2;56893:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56893:35:0;;;;56727:507;;;57154:64;57173:5;57179:1;57173:8;;;;;;;;;;;;;;;;;;57183:10;57195:13;57210:7;57154:18;:64::i;:::-;57333:13;-1:-1:-1;;;;;57333:36:0;;57376:9;57387:5;57394:7;57403:10;57415;57427;57439:17;57458:13;57333:139;;;;;-1:-1:-1;;;57333:139:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57333:139:0;-1:-1:-1;;;;;57333:139:0;;;;;;;;;-1:-1:-1;;;;;57333:139:0;-1:-1:-1;;;;;57333:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;57333:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;57333:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57333:139:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;57333:139:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;17478:209:0;17582:9;:7;:9::i;:::-;17574:18;;;;;;;;17667:12;;17656:8;:23;;-1:-1:-1;;;;;;17656:23:0;-1:-1:-1;;;;;17667:12:0;;;17656:23;;;;;;17478:209::o;30022:37::-;;;;;;;;;:::o;29114:::-;;;-1:-1:-1;;;;;29114:37:0;;:::o;11440:202::-;11508:10;;-1:-1:-1;;;;;11508:10:0;11494;:24;11486:33;;;;;;11558:10;;11549:7;;11535:34;;-1:-1:-1;;;;;11558:10:0;;;;11549:7;;;;11535:34;;11558:10;;11535:34;11590:10;;;11580:7;:20;;-1:-1:-1;;;;;;11580:20:0;;;-1:-1:-1;;;;;11590:10:0;;11580:20;;;;11611:23;;;11440:202::o;15760:21::-;;;;;;;;;:::o;62138:1300::-;62231:14;62278:22;62547:24;62582:22;62615:21;62652:8;62928:23;33744:1;33721:13;:20;;;;:24;33713:33;;;;;;;;62248:5;;;;;;;;;-1:-1:-1;;;;;62248:5:0;-1:-1:-1;;;;;62248:17:0;;:19;;;;;-1:-1:-1;;;62248:19:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62248:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;62248:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;62248:19:0;;-1:-1:-1;62318:25:0;-1:-1:-1;;;;;;;;;;;62318:9:0;:25::i;:::-;62278:66;;62663:1;62652:12;;62647:678;62670:13;:20;62666:24;;;;62647:678;;;62727:13;:16;;;;;;;;;;;;;;;;;;;;;;;;62775:28;;;-1:-1:-1;;;;;62775:28:0;;62798:4;62775:28;;;;;;-1:-1:-1;;;;;62727:16:0;;;;-1:-1:-1;62727:16:0;;62775:22;;:28;;;;;62727:16;;62775:28;;;;;;;;;;62727:16;62775:28;;;5:2:-1;;;;30:1;27;20:12;5:2;62775:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;62775:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;62775:28:0;62884:17;;62834:77;;;;;;;;;;;;;;;;;;62884:17;;;;62834:77;;;;;;;;;;;62775:28;;-1:-1:-1;;;;;;62834:25:0;;;;;:77;;;;;62775:28;;62834:77;;;;;;;;62884:17;62834:25;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;62834:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;62834:77:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;62834:77:0;-1:-1:-1;;;;;62954:22:0;;;;;;:8;62834:77;62954:22;;;;62834:77;;-1:-1:-1;62954:22:0;-1:-1:-1;63061:65:0;62963:12;63094:10;63106:4;62834:77;63061:18;:65::i;:::-;63299:13;;;;63219:94;;;63249:16;;;63219:94;;63267:30;;;63219:94;;;;63299:13;;;;63219:94;;;;;-1:-1:-1;;;;;63219:94:0;;;-1:-1:-1;;;;;;;;;;;63219:94:0;;;;;;;;;62692:3;;;;;62647:678;;;63398:5;;:32;;;-1:-1:-1;;;;;63398:32:0;;63410:10;63398:32;;;;;;;;;;;;-1:-1:-1;;;;;63398:5:0;;;;:11;;:32;;;;;:5;;:32;;;;;;;;:5;;:32;;;5:2:-1;;;;30:1;27;20:12;5:2;63398:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;63398:32:0;;;;62138:1300;;;;;;;;:::o;44928:1063::-;45180:7;45189;45214:27;45282:25;45348:22;45425:14;45677:19;24091:4;-1:-1:-1;;;;;24066:30:0;:5;;;;;;;;;-1:-1:-1;;;;;24066:5:0;-1:-1:-1;;;;;24066:11:0;;:13;;;;;-1:-1:-1;;;24066:13:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24066:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24066:13:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24066:13:0;-1:-1:-1;;;;;24066:30:0;;24058:39;;;;;;-1:-1:-1;;;;;33002:18:0;;;;;;:8;:18;;;;;:24;;;:18;;:24;;;;;32994:33;;;;;;;;-1:-1:-1;;;;;33002:18:0;;;;;;:8;:18;;;;;:24;;;:18;;:24;;;;;32994:33;;;;;;;;-1:-1:-1;;;;;45244:27:0;;;;;;;:8;:27;;;;;;45310:25;;;;;;;45244:27;;-1:-1:-1;45310:25:0;-1:-1:-1;45388:25:0;-1:-1:-1;;;;;;;;;;;45388:9:0;:25::i;:::-;45348:66;;45442:7;-1:-1:-1;;;;;45442:35:0;;45492:36;45510:17;45492;:36::i;:::-;45544:17;;;;;;45577:34;45595:15;45577:17;:34::i;:::-;45627:15;;;;45442:224;;;45627:15;45442:224;;;-1:-1:-1;;;45442:224:0;;;;;;;;;;;;;;;;;;;;;;;;45627:15;;;;45442:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45442:224:0;;;;5:2:-1;;;;30:1;27;20:12;5:2;45442:224:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45442:224:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45442:224:0;;-1:-1:-1;45699:25:0;45442:224;45722:1;45699:14;:25::i;:::-;45677:47;45962:20;;;;;-1:-1:-1;44928:1063:0;;-1:-1:-1;;;;;;;;;;44928:1063:0:o;29250:34::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29250:34:0;;-1:-1:-1;29250:34:0;:::o;8740:23::-;;;-1:-1:-1;;;;;8740:23:0;;:::o;37821:284::-;37868:42;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;37938:36;-1:-1:-1;;;;;;;;;;;37938:9:0;:36::i;:::-;37868:107;;37988:36;38006:17;37988;:36::i;:::-;38061:7;;38035:34;;;;;;38061:7;;;;;;38035:34;;;;;-1:-1:-1;;;;;38035:25:0;;;;;:34;;;;;-1:-1:-1;;38035:34:0;;;;;;;-1:-1:-1;38035:25:0;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;38035:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38035:34:0;;;;38080:17;:15;:17::i;:::-;37821:284;:::o;29387:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69650:148::-;69729:7;69756:34;69774:15;69756:17;:34::i;:::-;69749:41;69650:148;-1:-1:-1;;69650:148:0:o;26167:92::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;26233:7;:18;;-1:-1:-1;;;;;;26233:18:0;-1:-1:-1;;;;;26233:18:0;;;;;;;;;;26167:92::o;53834:347::-;54016:7;54048:125;54073:5;54080:7;54089:10;54101:37;54016:7;;;;;54101:12;:37::i;:::-;54140:17;54159:13;54048:24;:125::i;:::-;54041:132;53834:347;-1:-1:-1;;;;;;53834:347:0:o;11187:160::-;10879:5;;-1:-1:-1;;;;;10879:5:0;10865:10;:19;;:44;;-1:-1:-1;10902:7:0;;-1:-1:-1;;;;;10902:7:0;10888:10;:21;10865:44;10857:53;;;;;;;;11296:7;;-1:-1:-1;;;;;11281:22:0;;;11296:7;;11281:22;;11273:31;;;;;;11315:10;:24;;-1:-1:-1;;;;;;11315:24:0;-1:-1:-1;;;;;11315:24:0;;;;;;;;;;11187:160::o;35781:290::-;10879:5;;-1:-1:-1;;;;;10879:5:0;10865:10;:19;;:44;;-1:-1:-1;10902:7:0;;-1:-1:-1;;;;;10902:7:0;10888:10;:21;10865:44;10857:53;;;;;;;;35916:1;35898:14;:19;;;;:57;;;;-1:-1:-1;35939:16:0;;;;;;;;;35921:34;;;;;35898:57;35890:66;;;;;;;;35992:13;;35972:50;;;35992:13;;;;;;;35972:50;;;;;;;;;;;;;;;;;;;;;36033:13;:30;;;;;;;;-1:-1:-1;;36033:30:0;;;;;;;;;35781:290::o;67368:195::-;67472:7;67499:56;67513:5;67520:7;67529:10;67549:1;67553;67499:13;:56::i;:::-;67492:63;67368:195;-1:-1:-1;;;;67368:195:0:o;9508:140::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;9603:5;;-1:-1:-1;;;;;9590:18:0;;;9603:5;;9590:18;;9582:27;;;;;;9620:8;:20;;-1:-1:-1;;;;;;9620:20:0;-1:-1:-1;;;;;9620:20:0;;;;;;;;;;9508:140::o;23579:24::-;;;-1:-1:-1;;;;;23579:24:0;;:::o;25674:352::-;25837:7;;-1:-1:-1;;;;;25837:7:0;25823:10;:21;25815:30;;;;;;25946:5;;:29;;;-1:-1:-1;;;;;25946:29:0;;-1:-1:-1;;;;;25946:29:0;;;;;;;;;;;;;;;:5;;;;;:13;;:29;;;;;:5;;:29;;;;;;;:5;;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;25946:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;25986:5:0;;:32;;;-1:-1:-1;;;;;25986:32:0;;25998:10;25986:32;;;;;;;;;;;;-1:-1:-1;;;;;25986:5:0;;;;-1:-1:-1;25986:11:0;;-1:-1:-1;25986:32:0;;;;;:5;;:32;;;;;;;;:5;;:32;;;5:2:-1;;;;30:1;27;20:12;5:2;25986:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25986:32:0;;;;25674:352;;:::o;60238:118::-;60280:4;60318:5;;-1:-1:-1;;;;;60318:5:0;60304:10;:19;;:44;;-1:-1:-1;;60341:7:0;;-1:-1:-1;;;;;60341:7:0;60327:10;:21;;60238:118::o;18554:133::-;18646:8;;:33;;;;;;;;;;;;;;18619:7;;-1:-1:-1;;;;;18646:8:0;;:18;;:33;;;;;;;;;;;;;;18619:7;18646:8;:33;;;5:2:-1;;;;30:1;27;20:12;5:2;18646:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18646:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18646:33:0;;18554:133;-1:-1:-1;;18554:133:0:o;24512:121::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;24591:5;;:34;;;;;;-1:-1:-1;;;;;24591:34:0;;;;;;;;;:5;;;;;:23;;:34;;;;;:5;;:34;;;;;;;:5;;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;24591:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24591:34:0;;;;24512:121;:::o;66174:542::-;66340:9;;66373;;;;:22;;;;-1:-1:-1;66386:9:0;;66373:22;:35;;;;-1:-1:-1;66399:9:0;;66373:35;66369:77;;;66430:16;;;66444:1;66430:16;;;;;;;;;-1:-1:-1;66423:23:0;;66369:77;66486:16;;;66500:1;66486:16;;;;;;;;;;;;;17:15:-1;;105:10;66486:16:0;88:34:-1;136:17;;-1:-1;66486:16:0;66457:45;;66528:10;66513:9;66523:1;66513:12;;;;;;;;;;;;;;;;;;:25;66549:12;;66564:6;;66549:9;;66559:1;;66549:12;;;;;;;;;;;;;;:21;66581:12;;66596:11;;;;66581:9;;66591:1;;66581:12;;;;;;;;;;;;;;:26;66618:12;;66641:2;;66618:9;;66628:1;;66618:12;;;;;;;;;;;;;;:26;66655:12;;66678:2;;66655:9;;66665:1;;66655:12;;;;;;;;;;;;;;:26;66699:9;-1:-1:-1;66699:9:0;66174:542;;;;;;;;;:::o;48951:1052::-;49053:7;49073:14;49098:17;49358:23;49148:48;49166:13;49181:14;49148:17;:48::i;:::-;49126:70;;-1:-1:-1;49126:70:0;-1:-1:-1;49309:11:0;;;;;:35;;;49334:10;49324:6;:20;;49309:35;49301:44;;;;;;;;-1:-1:-1;;;;;;49384:23:0;;;;;;:8;:23;;;;;49484:67;49393:13;49518:10;49530:4;49536:14;49484:18;:67::i;:::-;49623:5;;:31;;;-1:-1:-1;;;;;49623:31:0;;49635:10;49623:31;;;;;;;;;;;;-1:-1:-1;;;;;49623:5:0;;;;:11;;:31;;;;;:5;;:31;;;;;;;;:5;;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;49623:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;49748:5:0;;49709:80;;-1:-1:-1;49733:13:0;;-1:-1:-1;;;;;;49748:5:0;49755:14;49771:6;49779:9;49709:23;:80::i;:::-;49890:13;-1:-1:-1;;;;;49874:97:0;-1:-1:-1;;;;;;;;;;;49905:5:0;;;;;;;;;-1:-1:-1;;;;;49905:5:0;-1:-1:-1;;;;;49905:17:0;;:19;;;;;-1:-1:-1;;;49905:19:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49905:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49905:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49905:19:0;49926:29;;;-1:-1:-1;;;;;49926:29:0;;49950:4;49926:29;;;;;;-1:-1:-1;;;;;49926:23:0;;;;;:29;;;;;49905:19;;49926:29;;;;;;;-1:-1:-1;49926:23:0;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;49926:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49926:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49926:29:0;49957:13;;;;49874:97;;;;;;49926:29;49874:97;;;;;;49957:13;;49874:97;;;;;;;;;;;;;-1:-1:-1;49989:6:0;;48951:1052;-1:-1:-1;;;;;48951:1052:0:o;50427:1466::-;50570:5;;:27;;;-1:-1:-1;;;;;50570:27:0;;50586:10;50570:27;;;;;;50527:7;;;;;;;;;;;;-1:-1:-1;;;;;50570:5:0;;;;:15;;:27;;;;;;;;;;;;;;;50527:7;50570:5;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;50570:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50570:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50570:27:0;50555:42;;;50547:51;;;;;;50702:41;50716:13;50731:11;50702:13;:41::i;:::-;50680:63;;-1:-1:-1;50680:63:0;-1:-1:-1;50856:11:0;;;;;:35;;;50881:10;50871:6;:20;;50856:35;50848:44;;;;;;;;51039:5;;;;;;;;;-1:-1:-1;;;;;51039:5:0;-1:-1:-1;;;;;51039:17:0;;:19;;;;;-1:-1:-1;;;51039:19:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51039:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51039:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51039:19:0;51094:29;;;-1:-1:-1;;;;;51094:29:0;;51118:4;51094:29;;;;;;51039:19;;-1:-1:-1;;;;;;51094:23:0;;;;;:29;;;;;51039:19;;51094:29;;;;;;;;-1:-1:-1;51094:23:0;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;51094:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51094:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51094:29:0;;-1:-1:-1;51141:23:0;;;;:83;;;51179:14;51169:6;:24;:54;;;;;51212:11;51197;:26;51169:54;51134:91;;;;;;-1:-1:-1;;;;;;51264:23:0;;;;;;;:8;:23;;;;;;51377:5;;:38;;-1:-1:-1;;;;;51377:38:0;;51391:10;51377:38;;;;;;;;;;;;51264:23;;51377:5;;:13;;:38;;;;;;;;;;;51264:23;51377:5;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;51377:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51377:38:0;;;;51488:59;51507:13;51522:4;51528:10;51540:6;51488:18;:59::i;:::-;51626:5;;51602:77;;-1:-1:-1;;;;;51626:5:0;51633:13;51648:11;51661:6;51669:9;51602:23;:77::i;:::-;51780:13;-1:-1:-1;;;;;51764:97:0;-1:-1:-1;;;;;;;;;;;51795:5:0;;;;;;;;;-1:-1:-1;;;;;51795:5:0;-1:-1:-1;;;;;51795:17:0;;:19;;;;;-1:-1:-1;;;51795:19:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51795:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51795:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51795:19:0;51816:29;;;-1:-1:-1;;;;;51816:29:0;;51840:4;51816:29;;;;;;-1:-1:-1;;;;;51816:23:0;;;;;:29;;;;;51795:19;;51816:29;;;;;;;-1:-1:-1;51816:23:0;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;51816:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51816:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51816:29:0;51847:13;;;;51764:97;;;;;;51816:29;51764:97;;;;;;51847:13;;51764:97;;;;;;;;;;;;;-1:-1:-1;51879:6:0;;50427:1466;-1:-1:-1;;;;;;;50427:1466:0:o;60785:935::-;61382:19;61624;61404:6;-1:-1:-1;;;;;61404:16:0;;61421:3;61404:21;;;;;-1:-1:-1;;;61404:21:0;;;;;;;-1:-1:-1;;;;;61404:21:0;-1:-1:-1;;;;;61404:21:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;61404:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61404:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;61404:21:0;;-1:-1:-1;;;;;;61440:22:0;;61457:4;61440:22;61436:177;;;61495:6;-1:-1:-1;;;;;61477:34:0;;61512:3;61517:7;61477:48;;;;;-1:-1:-1;;;61477:48:0;;;;;;;-1:-1:-1;;;;;61477:48:0;-1:-1:-1;;;;;61477:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;61477:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61477:48:0;;;;61436:177;;;61554:59;;;;;;-1:-1:-1;;;;;61554:59:0;;;;;;;;;;;;;;;;;;;;;;:38;;;;;;:59;;;;;-1:-1:-1;;61554:59:0;;;;;;;;-1:-1:-1;61554:38:0;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;61554:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61554:59:0;;;;61436:177;61646:6;-1:-1:-1;;;;;61646:16:0;;61663:3;61646:21;;;;;-1:-1:-1;;;61646:21:0;;;;;;;-1:-1:-1;;;;;61646:21:0;-1:-1:-1;;;;;61646:21:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;61646:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61646:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;61646:21:0;;-1:-1:-1;61686:25:0;;;61678:34;;;;;65504:662;66045:8;66032:21;;66025:29;;;;66070:88;;;;;;;;;;;;;;;;;;;;66103:10;;-1:-1:-1;;;;;66070:88:0;;;;;;;;;;;;;;;;;;65504:662;;;;;:::o;24779:91::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;24839:5;;;;;;;;;-1:-1:-1;;;;;24839:5:0;-1:-1:-1;;;;;24839:21:0;;:23;;;;;-1:-1:-1;;;24839:23:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24839:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;12762:234:0;12822:7;;12875;;12871:34;;;12904:1;12897:8;;;;12871:34;-1:-1:-1;12930:7:0;;;12935:2;12930;:7;12956:6;;;;;;;;:12;12948:21;;;;;;12987:1;12980:8;;12762:234;;;;;;:::o;13232:154::-;13292:7;;13320:6;;;13312:15;;;;;;13355:2;13350;:7;;;;;;;;;13232:154;-1:-1:-1;;;;13232:154:0:o;22274:260::-;9234:5;;-1:-1:-1;;;;;9234:5:0;9220:10;:19;9212:28;;;;;;22405:6;-1:-1:-1;;;;;13890:22:0;;;;13882:31;;;;;;22435:3;-1:-1:-1;;;;;13890:22:0;;;;13882:31;;;;;;22457:3;-1:-1:-1;;;;;14069:25:0;;14089:4;14069:25;;14061:34;;;;;;22496:6;-1:-1:-1;;;;;22478:34:0;;22513:3;22518:7;22478:48;;;;;-1:-1:-1;;;22478:48:0;;;;;;;-1:-1:-1;;;;;22478:48:0;-1:-1:-1;;;;;22478:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22478:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22478:48:0;;;;13924:1;;9251;22274:260;;;:::o
Swarm Source
bzzr://71c69c7806572b1f290d0dfe635f8af0c09bcd79a08013223dc252a134b99a98
Loading...
Loading
Loading...
Loading
OVERVIEW
Bancor converter address.Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.