Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Admin Allow Toke... | 12538586 | 1307 days ago | IN | 0 ETH | 0.00192168 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MintFactory
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: UNLICENSED // ALL RIGHTS RESERVED // Unicrypt by SDDTech reserves all rights on this code. You may NOT copy these contracts. // This contract logs all ENMT tokens that where generated by the Unicrypt ENMT platform. // You can query this factory with any erc20 token address to see if it is a valid ENMT token and requires no // safety audit on the token contract itself with the function: isENMT(tokenAddress) pragma solidity ^0.8.0; import "./EnumerableSet.sol"; import "./Ownable.sol"; contract MintFactory is Ownable { using EnumerableSet for EnumerableSet.AddressSet; EnumerableSet.AddressSet private tokens; EnumerableSet.AddressSet private tokenGenerators; mapping(address => address[]) private tokenOwners; event tokenRegistered(address tokenAddress, address tokenOwner); function adminAllowTokenGenerator (address _address, bool _allow) public onlyOwner { if (_allow) { tokenGenerators.add(_address); } else { tokenGenerators.remove(_address); } } /** * @notice called by a registered tokenGenerator upon token creation */ function registerToken (address _tokenOwner, address _tokenAddress) public { require(tokenGenerators.contains(msg.sender), 'FORBIDDEN'); tokens.add(_tokenAddress); tokenOwners[_tokenOwner].push(_tokenAddress); emit tokenRegistered(_tokenAddress, _tokenOwner); } /** * @notice gets a token at index registered under a user address * @return token address registered to the user address */ function getTokenByOwnerAtIndex(address _tokenOwner, uint256 _index) external view returns(address) { return tokenOwners[_tokenOwner][_index]; } /** * @notice gets the total number of tokens registered under a user address * @return uint total of token addresses registered to the user address */ function getTokensLengthByOwner(address _tokenOwner) external view returns(uint256) { return tokenOwners[_tokenOwner].length; } /** * @notice Number of allowed tokenGenerators */ function tokenGeneratorsLength() external view returns (uint256) { return tokenGenerators.length(); } /** * @notice Gets the address of a registered tokenGenerator at specified index */ function tokenGeneratorAtIndex(uint256 _index) external view returns (address) { return tokenGenerators.at(_index); } /** * @notice returns true if contract is allowed to generate and register tokens */ function tokenGeneratorIsAllowed(address _tokenGenerator) external view returns (bool) { return tokenGenerators.contains(_tokenGenerator); } /** * @notice returns true if the token is a valid ENMT token generated by the Unicrypt Minter */ function isENMT(address _tokenAddress) external view returns (bool) { return tokens.contains(_tokenAddress); } /** * @notice The length of all valid ENMT tokens on the platform */ function tokensLength() external view returns (uint256) { return tokens.length(); } /** * @notice gets an ENMT token at a specific index. Although using Enumerable Set, since tokens are only added and not removed, indexes will never change * @return the address of the ENMT token at index */ function tokenAtIndex(uint256 _index) external view returns (address) { return tokens.at(_index); } }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/structs/[email protected] pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenOwner","type":"address"}],"name":"tokenRegistered","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"adminAllowTokenGenerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenOwner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getTokenByOwnerAtIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenOwner","type":"address"}],"name":"getTokensLengthByOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"isENMT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenOwner","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"registerToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokenAtIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokenGeneratorAtIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenGenerator","type":"address"}],"name":"tokenGeneratorIsAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenGeneratorsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060006100216100c460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506100cc565b600033905090565b611245806100db6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80638da5cb5b1161008c578063d92fc67b11610066578063d92fc67b14610226578063ebeca06514610244578063f2fde38b14610274578063f588e01514610290576100cf565b80638da5cb5b146101ba578063b246bc6f146101d8578063b546ab30146101f6576100cf565b806341f1afc7146100d45780634739f7e51461010457806352ebc9c0146101205780636257bb2014610150578063715018a614610180578063832c28ee1461018a575b600080fd5b6100ee60048036038101906100e99190610dec565b6102ac565b6040516100fb9190610ece565b60405180910390f35b61011e60048036038101906101199190610d38565b6102c9565b005b61013a60048036038101906101359190610d0f565b61040e565b6040516101479190610f12565b60405180910390f35b61016a60048036038101906101659190610dec565b61042b565b6040516101779190610ece565b60405180910390f35b610188610448565b005b6101a4600480360381019061019f9190610d0f565b610582565b6040516101b19190610fad565b60405180910390f35b6101c26105ce565b6040516101cf9190610ece565b60405180910390f35b6101e06105f7565b6040516101ed9190610fad565b60405180910390f35b610210600480360381019061020b9190610d0f565b610608565b60405161021d9190610f12565b60405180910390f35b61022e610625565b60405161023b9190610fad565b60405180910390f35b61025e60048036038101906102599190610db0565b610636565b60405161026b9190610ece565b60405180910390f35b61028e60048036038101906102899190610d0f565b6106e2565b005b6102aa60048036038101906102a59190610d74565b61088b565b005b60006102c282600161094190919063ffffffff16565b9050919050565b6102dd33600361095b90919063ffffffff16565b61031c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031390610f6d565b60405180910390fd5b61033081600161098b90919063ffffffff16565b50600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9d2826e1995b4858d711097615ac98b9c494de7182020aa7cffbe8d61fc0f7a28183604051610402929190610ee9565b60405180910390a15050565b600061042482600361095b90919063ffffffff16565b9050919050565b600061044182600361094190919063ffffffff16565b9050919050565b6104506109bb565b73ffffffffffffffffffffffffffffffffffffffff1661046e6105ce565b73ffffffffffffffffffffffffffffffffffffffff16146104c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bb90610f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061060360036109c3565b905090565b600061061e82600161095b90919063ffffffff16565b9050919050565b600061063160016109c3565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106106af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b6106ea6109bb565b73ffffffffffffffffffffffffffffffffffffffff166107086105ce565b73ffffffffffffffffffffffffffffffffffffffff161461075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590610f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590610f4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6108936109bb565b73ffffffffffffffffffffffffffffffffffffffff166108b16105ce565b73ffffffffffffffffffffffffffffffffffffffff1614610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe90610f8d565b60405180910390fd5b80156109275761092182600361098b90919063ffffffff16565b5061093d565b61093b8260036109d890919063ffffffff16565b505b5050565b60006109508360000183610a08565b60001c905092915050565b6000610983836000018373ffffffffffffffffffffffffffffffffffffffff1660001b610aa2565b905092915050565b60006109b3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b610ac5565b905092915050565b600033905090565b60006109d182600001610b35565b9050919050565b6000610a00836000018373ffffffffffffffffffffffffffffffffffffffff1660001b610b46565b905092915050565b600081836000018054905011610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90610f2d565b60405180910390fd5b826000018281548110610a8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000610ad18383610aa2565b610b2a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050610b2f565b600090505b92915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114610cc4576000600182610b78919061102f565b9050600060018660000180549050610b90919061102f565b90506000866000018281548110610bd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110610c1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183610c359190610fd9565b8760010160008381526020019081526020016000208190555086600001805480610c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cca565b60009150505b92915050565b600081359050610cdf816111ca565b92915050565b600081359050610cf4816111e1565b92915050565b600081359050610d09816111f8565b92915050565b600060208284031215610d2157600080fd5b6000610d2f84828501610cd0565b91505092915050565b60008060408385031215610d4b57600080fd5b6000610d5985828601610cd0565b9250506020610d6a85828601610cd0565b9150509250929050565b60008060408385031215610d8757600080fd5b6000610d9585828601610cd0565b9250506020610da685828601610ce5565b9150509250929050565b60008060408385031215610dc357600080fd5b6000610dd185828601610cd0565b9250506020610de285828601610cfa565b9150509250929050565b600060208284031215610dfe57600080fd5b6000610e0c84828501610cfa565b91505092915050565b610e1e81611063565b82525050565b610e2d81611075565b82525050565b6000610e40602283610fc8565b9150610e4b826110da565b604082019050919050565b6000610e63602683610fc8565b9150610e6e82611129565b604082019050919050565b6000610e86600983610fc8565b9150610e9182611178565b602082019050919050565b6000610ea9602083610fc8565b9150610eb4826111a1565b602082019050919050565b610ec8816110a1565b82525050565b6000602082019050610ee36000830184610e15565b92915050565b6000604082019050610efe6000830185610e15565b610f0b6020830184610e15565b9392505050565b6000602082019050610f276000830184610e24565b92915050565b60006020820190508181036000830152610f4681610e33565b9050919050565b60006020820190508181036000830152610f6681610e56565b9050919050565b60006020820190508181036000830152610f8681610e79565b9050919050565b60006020820190508181036000830152610fa681610e9c565b9050919050565b6000602082019050610fc26000830184610ebf565b92915050565b600082825260208201905092915050565b6000610fe4826110a1565b9150610fef836110a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611024576110236110ab565b5b828201905092915050565b600061103a826110a1565b9150611045836110a1565b925082821015611058576110576110ab565b5b828203905092915050565b600061106e82611081565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f464f5242494444454e0000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6111d381611063565b81146111de57600080fd5b50565b6111ea81611075565b81146111f557600080fd5b50565b611201816110a1565b811461120c57600080fd5b5056fea2646970667358221220dfc614f254d966a9a7e73ecaefbe237eeda00a4717e9ac632174dc70adb00c1664736f6c63430008010033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80638da5cb5b1161008c578063d92fc67b11610066578063d92fc67b14610226578063ebeca06514610244578063f2fde38b14610274578063f588e01514610290576100cf565b80638da5cb5b146101ba578063b246bc6f146101d8578063b546ab30146101f6576100cf565b806341f1afc7146100d45780634739f7e51461010457806352ebc9c0146101205780636257bb2014610150578063715018a614610180578063832c28ee1461018a575b600080fd5b6100ee60048036038101906100e99190610dec565b6102ac565b6040516100fb9190610ece565b60405180910390f35b61011e60048036038101906101199190610d38565b6102c9565b005b61013a60048036038101906101359190610d0f565b61040e565b6040516101479190610f12565b60405180910390f35b61016a60048036038101906101659190610dec565b61042b565b6040516101779190610ece565b60405180910390f35b610188610448565b005b6101a4600480360381019061019f9190610d0f565b610582565b6040516101b19190610fad565b60405180910390f35b6101c26105ce565b6040516101cf9190610ece565b60405180910390f35b6101e06105f7565b6040516101ed9190610fad565b60405180910390f35b610210600480360381019061020b9190610d0f565b610608565b60405161021d9190610f12565b60405180910390f35b61022e610625565b60405161023b9190610fad565b60405180910390f35b61025e60048036038101906102599190610db0565b610636565b60405161026b9190610ece565b60405180910390f35b61028e60048036038101906102899190610d0f565b6106e2565b005b6102aa60048036038101906102a59190610d74565b61088b565b005b60006102c282600161094190919063ffffffff16565b9050919050565b6102dd33600361095b90919063ffffffff16565b61031c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031390610f6d565b60405180910390fd5b61033081600161098b90919063ffffffff16565b50600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9d2826e1995b4858d711097615ac98b9c494de7182020aa7cffbe8d61fc0f7a28183604051610402929190610ee9565b60405180910390a15050565b600061042482600361095b90919063ffffffff16565b9050919050565b600061044182600361094190919063ffffffff16565b9050919050565b6104506109bb565b73ffffffffffffffffffffffffffffffffffffffff1661046e6105ce565b73ffffffffffffffffffffffffffffffffffffffff16146104c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bb90610f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061060360036109c3565b905090565b600061061e82600161095b90919063ffffffff16565b9050919050565b600061063160016109c3565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106106af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b6106ea6109bb565b73ffffffffffffffffffffffffffffffffffffffff166107086105ce565b73ffffffffffffffffffffffffffffffffffffffff161461075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590610f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590610f4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6108936109bb565b73ffffffffffffffffffffffffffffffffffffffff166108b16105ce565b73ffffffffffffffffffffffffffffffffffffffff1614610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe90610f8d565b60405180910390fd5b80156109275761092182600361098b90919063ffffffff16565b5061093d565b61093b8260036109d890919063ffffffff16565b505b5050565b60006109508360000183610a08565b60001c905092915050565b6000610983836000018373ffffffffffffffffffffffffffffffffffffffff1660001b610aa2565b905092915050565b60006109b3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b610ac5565b905092915050565b600033905090565b60006109d182600001610b35565b9050919050565b6000610a00836000018373ffffffffffffffffffffffffffffffffffffffff1660001b610b46565b905092915050565b600081836000018054905011610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90610f2d565b60405180910390fd5b826000018281548110610a8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000610ad18383610aa2565b610b2a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050610b2f565b600090505b92915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114610cc4576000600182610b78919061102f565b9050600060018660000180549050610b90919061102f565b90506000866000018281548110610bd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110610c1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183610c359190610fd9565b8760010160008381526020019081526020016000208190555086600001805480610c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cca565b60009150505b92915050565b600081359050610cdf816111ca565b92915050565b600081359050610cf4816111e1565b92915050565b600081359050610d09816111f8565b92915050565b600060208284031215610d2157600080fd5b6000610d2f84828501610cd0565b91505092915050565b60008060408385031215610d4b57600080fd5b6000610d5985828601610cd0565b9250506020610d6a85828601610cd0565b9150509250929050565b60008060408385031215610d8757600080fd5b6000610d9585828601610cd0565b9250506020610da685828601610ce5565b9150509250929050565b60008060408385031215610dc357600080fd5b6000610dd185828601610cd0565b9250506020610de285828601610cfa565b9150509250929050565b600060208284031215610dfe57600080fd5b6000610e0c84828501610cfa565b91505092915050565b610e1e81611063565b82525050565b610e2d81611075565b82525050565b6000610e40602283610fc8565b9150610e4b826110da565b604082019050919050565b6000610e63602683610fc8565b9150610e6e82611129565b604082019050919050565b6000610e86600983610fc8565b9150610e9182611178565b602082019050919050565b6000610ea9602083610fc8565b9150610eb4826111a1565b602082019050919050565b610ec8816110a1565b82525050565b6000602082019050610ee36000830184610e15565b92915050565b6000604082019050610efe6000830185610e15565b610f0b6020830184610e15565b9392505050565b6000602082019050610f276000830184610e24565b92915050565b60006020820190508181036000830152610f4681610e33565b9050919050565b60006020820190508181036000830152610f6681610e56565b9050919050565b60006020820190508181036000830152610f8681610e79565b9050919050565b60006020820190508181036000830152610fa681610e9c565b9050919050565b6000602082019050610fc26000830184610ebf565b92915050565b600082825260208201905092915050565b6000610fe4826110a1565b9150610fef836110a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611024576110236110ab565b5b828201905092915050565b600061103a826110a1565b9150611045836110a1565b925082821015611058576110576110ab565b5b828203905092915050565b600061106e82611081565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f464f5242494444454e0000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6111d381611063565b81146111de57600080fd5b50565b6111ea81611075565b81146111f557600080fd5b50565b611201816110a1565b811461120c57600080fd5b5056fea2646970667358221220dfc614f254d966a9a7e73ecaefbe237eeda00a4717e9ac632174dc70adb00c1664736f6c63430008010033
Deployed Bytecode Sourcemap
533:3158:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3569:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1216:302;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2726:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2485:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1807:148:3;;;:::i;:::-;;2034:143:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1156:87:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2257:115:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3007:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3229:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1677:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2110:244:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;878:234:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3569:113;3630:7;3657:17;3667:6;3657;:9;;:17;;;;:::i;:::-;3650:24;;3569:113;;;:::o;1216:302::-;1310:36;1335:10;1310:15;:24;;:36;;;;:::i;:::-;1302:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1371:25;1382:13;1371:6;:10;;:25;;;;:::i;:::-;;1407:11;:24;1419:11;1407:24;;;;;;;;;;;;;;;1437:13;1407:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1467:43;1483:13;1498:11;1467:43;;;;;;;:::i;:::-;;;;;;;;1216:302;;:::o;2726:154::-;2807:4;2831:41;2856:15;2831;:24;;:41;;;;:::i;:::-;2824:48;;2726:154;;;:::o;2485:131::-;2555:7;2582:26;2601:6;2582:15;:18;;:26;;;;:::i;:::-;2575:33;;2485:131;;;:::o;1807:148:3:-;1387:12;:10;:12::i;:::-;1376:23;;:7;:5;:7::i;:::-;:23;;;1368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1914:1:::1;1877:40;;1898:6;::::0;::::1;;;;;;;;1877:40;;;;;;;;;;;;1945:1;1928:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1807:148::o:0;2034:143:2:-;2109:7;2137:11;:24;2149:11;2137:24;;;;;;;;;;;;;;;:31;;;;2130:38;;2034:143;;;:::o;1156:87:3:-;1202:7;1229:6;;;;;;;;;;;1222:13;;1156:87;:::o;2257:115:2:-;2313:7;2340:24;:15;:22;:24::i;:::-;2333:31;;2257:115;:::o;3007:124::-;3069:4;3093:30;3109:13;3093:6;:15;;:30;;;;:::i;:::-;3086:37;;3007:124;;;:::o;3229:97::-;3276:7;3303:15;:6;:13;:15::i;:::-;3296:22;;3229:97;:::o;1677:160::-;1768:7;1796:11;:24;1808:11;1796:24;;;;;;;;;;;;;;;1821:6;1796:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1789:39;;1677:160;;;;:::o;2110:244:3:-;1387:12;:10;:12::i;:::-;1376:23;;:7;:5;:7::i;:::-;:23;;;1368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2219:1:::1;2199:22;;:8;:22;;;;2191:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2309:8;2280:38;;2301:6;::::0;::::1;;;;;;;;2280:38;;;;;;;;;;;;2338:8;2329:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2110:244:::0;:::o;878:234:2:-;1387:12:3;:10;:12::i;:::-;1376:23;;:7;:5;:7::i;:::-;:23;;;1368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;976:6:2::1;972:133;;;999:29;1019:8;999:15;:19;;:29;;;;:::i;:::-;;972:133;;;1061:32;1084:8;1061:15;:22;;:32;;;;:::i;:::-;;972:133;878:234:::0;;:::o;7981:158:1:-;8055:7;8106:22;8110:3;:10;;8122:5;8106:3;:22::i;:::-;8098:31;;8075:56;;7981:158;;;;:::o;7267:167::-;7347:4;7371:55;7381:3;:10;;7417:5;7401:23;;7393:32;;7371:9;:55::i;:::-;7364:62;;7267:167;;;;:::o;6695:152::-;6765:4;6789:50;6794:3;:10;;6830:5;6814:23;;6806:32;;6789:4;:50::i;:::-;6782:57;;6695:152;;;;:::o;661:98:0:-;714:7;741:10;734:17;;661:98;:::o;7520:117:1:-;7583:7;7610:19;7618:3;:10;;7610:7;:19::i;:::-;7603:26;;7520:117;;;:::o;7023:158::-;7096:4;7120:53;7128:3;:10;;7164:5;7148:23;;7140:32;;7120:7;:53::i;:::-;7113:60;;7023:158;;;;:::o;4647:204::-;4714:7;4763:5;4742:3;:11;;:18;;;;:26;4734:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4825:3;:11;;4837:5;4825:18;;;;;;;;;;;;;;;;;;;;;;;;4818:25;;4647:204;;;;:::o;3979:129::-;4052:4;4099:1;4076:3;:12;;:19;4089:5;4076:19;;;;;;;;;;;;:24;;4069:31;;3979:129;;;;:::o;1759:414::-;1822:4;1844:21;1854:3;1859:5;1844:9;:21::i;:::-;1839:327;;1882:3;:11;;1899:5;1882:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2065:3;:11;;:18;;;;2043:3;:12;;:19;2056:5;2043:19;;;;;;;;;;;:40;;;;2105:4;2098:11;;;;1839:327;2149:5;2142:12;;1759:414;;;;;:::o;4194:109::-;4250:7;4277:3;:11;;:18;;;;4270:25;;4194:109;;;:::o;2349:1544::-;2415:4;2533:18;2554:3;:12;;:19;2567:5;2554:19;;;;;;;;;;;;2533:40;;2604:1;2590:10;:15;2586:1300;;2952:21;2989:1;2976:10;:14;;;;:::i;:::-;2952:38;;3005:17;3046:1;3025:3;:11;;:18;;;;:22;;;;:::i;:::-;3005:42;;3292:17;3312:3;:11;;3324:9;3312:22;;;;;;;;;;;;;;;;;;;;;;;;3292:42;;3458:9;3429:3;:11;;3441:13;3429:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3577:1;3561:13;:17;;;;:::i;:::-;3535:3;:12;;:23;3548:9;3535:23;;;;;;;;;;;:43;;;;3687:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3782:3;:12;;:19;3795:5;3782:19;;;;;;;;;;;3775:26;;;3825:4;3818:11;;;;;;;;2586:1300;3869:5;3862:12;;;2349:1544;;;;;:::o;7:139:4:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:401::-;;;1239:2;1227:9;1218:7;1214:23;1210:32;1207:2;;;1255:1;1252;1245:12;1207:2;1298:1;1323:53;1368:7;1359:6;1348:9;1344:22;1323:53;:::i;:::-;1313:63;;1269:117;1425:2;1451:50;1493:7;1484:6;1473:9;1469:22;1451:50;:::i;:::-;1441:60;;1396:115;1197:321;;;;;:::o;1524:407::-;;;1649:2;1637:9;1628:7;1624:23;1620:32;1617:2;;;1665:1;1662;1655:12;1617:2;1708:1;1733:53;1778:7;1769:6;1758:9;1754:22;1733:53;:::i;:::-;1723:63;;1679:117;1835:2;1861:53;1906:7;1897:6;1886:9;1882:22;1861:53;:::i;:::-;1851:63;;1806:118;1607:324;;;;;:::o;1937:262::-;;2045:2;2033:9;2024:7;2020:23;2016:32;2013:2;;;2061:1;2058;2051:12;2013:2;2104:1;2129:53;2174:7;2165:6;2154:9;2150:22;2129:53;:::i;:::-;2119:63;;2075:117;2003:196;;;;:::o;2205:118::-;2292:24;2310:5;2292:24;:::i;:::-;2287:3;2280:37;2270:53;;:::o;2329:109::-;2410:21;2425:5;2410:21;:::i;:::-;2405:3;2398:34;2388:50;;:::o;2444:366::-;;2607:67;2671:2;2666:3;2607:67;:::i;:::-;2600:74;;2683:93;2772:3;2683:93;:::i;:::-;2801:2;2796:3;2792:12;2785:19;;2590:220;;;:::o;2816:366::-;;2979:67;3043:2;3038:3;2979:67;:::i;:::-;2972:74;;3055:93;3144:3;3055:93;:::i;:::-;3173:2;3168:3;3164:12;3157:19;;2962:220;;;:::o;3188:365::-;;3351:66;3415:1;3410:3;3351:66;:::i;:::-;3344:73;;3426:93;3515:3;3426:93;:::i;:::-;3544:2;3539:3;3535:12;3528:19;;3334:219;;;:::o;3559:366::-;;3722:67;3786:2;3781:3;3722:67;:::i;:::-;3715:74;;3798:93;3887:3;3798:93;:::i;:::-;3916:2;3911:3;3907:12;3900:19;;3705:220;;;:::o;3931:118::-;4018:24;4036:5;4018:24;:::i;:::-;4013:3;4006:37;3996:53;;:::o;4055:222::-;;4186:2;4175:9;4171:18;4163:26;;4199:71;4267:1;4256:9;4252:17;4243:6;4199:71;:::i;:::-;4153:124;;;;:::o;4283:332::-;;4442:2;4431:9;4427:18;4419:26;;4455:71;4523:1;4512:9;4508:17;4499:6;4455:71;:::i;:::-;4536:72;4604:2;4593:9;4589:18;4580:6;4536:72;:::i;:::-;4409:206;;;;;:::o;4621:210::-;;4746:2;4735:9;4731:18;4723:26;;4759:65;4821:1;4810:9;4806:17;4797:6;4759:65;:::i;:::-;4713:118;;;;:::o;4837:419::-;;5041:2;5030:9;5026:18;5018:26;;5090:9;5084:4;5080:20;5076:1;5065:9;5061:17;5054:47;5118:131;5244:4;5118:131;:::i;:::-;5110:139;;5008:248;;;:::o;5262:419::-;;5466:2;5455:9;5451:18;5443:26;;5515:9;5509:4;5505:20;5501:1;5490:9;5486:17;5479:47;5543:131;5669:4;5543:131;:::i;:::-;5535:139;;5433:248;;;:::o;5687:419::-;;5891:2;5880:9;5876:18;5868:26;;5940:9;5934:4;5930:20;5926:1;5915:9;5911:17;5904:47;5968:131;6094:4;5968:131;:::i;:::-;5960:139;;5858:248;;;:::o;6112:419::-;;6316:2;6305:9;6301:18;6293:26;;6365:9;6359:4;6355:20;6351:1;6340:9;6336:17;6329:47;6393:131;6519:4;6393:131;:::i;:::-;6385:139;;6283:248;;;:::o;6537:222::-;;6668:2;6657:9;6653:18;6645:26;;6681:71;6749:1;6738:9;6734:17;6725:6;6681:71;:::i;:::-;6635:124;;;;:::o;6765:169::-;;6883:6;6878:3;6871:19;6923:4;6918:3;6914:14;6899:29;;6861:73;;;;:::o;6940:305::-;;6999:20;7017:1;6999:20;:::i;:::-;6994:25;;7033:20;7051:1;7033:20;:::i;:::-;7028:25;;7187:1;7119:66;7115:74;7112:1;7109:81;7106:2;;;7193:18;;:::i;:::-;7106:2;7237:1;7234;7230:9;7223:16;;6984:261;;;;:::o;7251:191::-;;7311:20;7329:1;7311:20;:::i;:::-;7306:25;;7345:20;7363:1;7345:20;:::i;:::-;7340:25;;7384:1;7381;7378:8;7375:2;;;7389:18;;:::i;:::-;7375:2;7434:1;7431;7427:9;7419:17;;7296:146;;;;:::o;7448:96::-;;7514:24;7532:5;7514:24;:::i;:::-;7503:35;;7493:51;;;:::o;7550:90::-;;7627:5;7620:13;7613:21;7602:32;;7592:48;;;:::o;7646:126::-;;7723:42;7716:5;7712:54;7701:65;;7691:81;;;:::o;7778:77::-;;7844:5;7833:16;;7823:32;;;:::o;7861:180::-;7909:77;7906:1;7899:88;8006:4;8003:1;7996:15;8030:4;8027:1;8020:15;8047:221;8187:34;8183:1;8175:6;8171:14;8164:58;8256:4;8251:2;8243:6;8239:15;8232:29;8153:115;:::o;8274:225::-;8414:34;8410:1;8402:6;8398:14;8391:58;8483:8;8478:2;8470:6;8466:15;8459:33;8380:119;:::o;8505:159::-;8645:11;8641:1;8633:6;8629:14;8622:35;8611:53;:::o;8670:182::-;8810:34;8806:1;8798:6;8794:14;8787:58;8776:76;:::o;8858:122::-;8931:24;8949:5;8931:24;:::i;:::-;8924:5;8921:35;8911:2;;8970:1;8967;8960:12;8911:2;8901:79;:::o;8986:116::-;9056:21;9071:5;9056:21;:::i;:::-;9049:5;9046:32;9036:2;;9092:1;9089;9082:12;9036:2;9026:76;:::o;9108:122::-;9181:24;9199:5;9181:24;:::i;:::-;9174:5;9171:35;9161:2;;9220:1;9217;9210:12;9161:2;9151:79;:::o
Swarm Source
ipfs://dfc614f254d966a9a7e73ecaefbe237eeda00a4717e9ac632174dc70adb00c16
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.