Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ExpansionWeirdPunks
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT /* __ __ ___ ____ ____ ___ ____ __ __ ____ __ _ _____ | |__| | / _]| || \ | \ | \| | || \ | |/ ]/ ___/ | | | | / [_ | | | D )| \ | o ) | || _ || ' /( \_ | | | || _] | | | / | D | | _/| | || | || \ \__ | | ` ' || [_ | | | \ | | | | | : || | || \/ \ | \ / | | | | | . \| | | | | || | || . |\ | \_/\_/ |_____||____||__|\_||_____| |__| \__,_||__|__||__|\_| \___| */ pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ERC721.sol"; import "./Strings.sol"; import "./AccessControlMixin.sol"; contract ExpansionWeirdPunks is ERC721, Ownable, AccessControlMixin { using Strings for uint256; string public baseURI; string public baseExtension = '.json'; uint256 public maxSupply = 2000; uint256 public totalSupply = 1000; bytes32 public constant PREDICATE_ROLE = keccak256("PREDICATE_ROLE"); bytes32 public constant ORACLE = keccak256("ORACLE"); address public oracleAddress; bool public allowBridging = false; uint256 public constant BATCH_LIMIT = 20; event startBatchBridge(address user, uint256[] IDs); function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } constructor( string memory _initBaseURI, address _MintableAssetProxy, address _oracleAddress ) ERC721("Expansion Weird Punks", "EWP") { setBaseURI(_initBaseURI); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(PREDICATE_ROLE, _MintableAssetProxy); oracleAddress = _oracleAddress; _setupRole(ORACLE, _oracleAddress); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mint(address user, uint256 tokenId) external only(PREDICATE_ROLE) { _mint(user, tokenId); totalSupply++; } function depositBridge(address user, uint256[] memory IDs) public only(ORACLE) { for (uint256 i; i < IDs.length; i++) { _mint(user, IDs[i]); totalSupply++; } } function batchBridge(uint256[] memory IDs) public { require(allowBridging); require(IDs.length <= BATCH_LIMIT, "ExpansionWeirdPunks: Exceeds limit"); for (uint256 i; i < IDs.length; i++) { require(msg.sender == ownerOf(IDs[i]), string(abi.encodePacked("ExpansionWeirdPunks: Invalid owner of ", IDs[i]))); _burn(IDs[i]); totalSupply--; } emit startBatchBridge(msg.sender, IDs); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ExpansionWeirdPunks: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setAllowBridging(bool allow) public onlyOwner { allowBridging = allow; } function setOracleAddress(address newOracleAddress) public onlyOwner { _revokeRole(ORACLE, oracleAddress); _grantRole(ORACLE, newOracleAddress); oracleAddress = newOracleAddress; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./AccessControl.sol"; contract AccessControlMixin is AccessControl { string private _revertMsg; function _setupContractId(string memory contractId) internal { _revertMsg = string(abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS")); } modifier only(bytes32 role) { require( hasRole(role, _msgSender()), _revertMsg ); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_MintableAssetProxy","type":"address"},{"internalType":"address","name":"_oracleAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"IDs","type":"uint256[]"}],"name":"startBatchBridge","type":"event"},{"inputs":[],"name":"BATCH_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ORACLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREDICATE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowBridging","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"IDs","type":"uint256[]"}],"name":"batchBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256[]","name":"IDs","type":"uint256[]"}],"name":"depositBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allow","type":"bool"}],"name":"setAllowBridging","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOracleAddress","type":"address"}],"name":"setOracleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000311565b506107d0600b556103e8600c55600d805460ff60a01b191690553480156200004f57600080fd5b5060405162002ac538038062002ac58339810160408190526200007291620003d4565b604080518082018252601581527f457870616e73696f6e2057656972642050756e6b73000000000000000000000060208083019182528351808501909452600384526204557560ec1b908401528151919291620000d29160009162000311565b508051620000e890600190602084019062000311565b50505062000105620000ff6200019960201b60201c565b6200019d565b6200011083620001ef565b6200011d60003362000267565b620001497f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f28362000267565b600d80546001600160a01b0319166001600160a01b038316179055620001907f352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c88262000267565b5050506200052a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200024e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200026390600990602084019062000311565b5050565b62000263828260008281526007602090815260408083206001600160a01b038516845290915290205460ff16620002635760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002cd3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200031f90620004d7565b90600052602060002090601f0160209004810192826200034357600085556200038e565b82601f106200035e57805160ff19168380011785556200038e565b828001600101855582156200038e579182015b828111156200038e57825182559160200191906001019062000371565b506200039c929150620003a0565b5090565b5b808211156200039c5760008155600101620003a1565b80516001600160a01b0381168114620003cf57600080fd5b919050565b600080600060608486031215620003ea57600080fd5b83516001600160401b03808211156200040257600080fd5b818601915086601f8301126200041757600080fd5b8151818111156200042c576200042c62000514565b604051601f8201601f19908116603f0116810190838211818310171562000457576200045762000514565b816040528281526020935089848487010111156200047457600080fd5b600091505b8282101562000498578482018401518183018501529083019062000479565b82821115620004aa5760008484830101525b9650620004bc915050868201620003b7565b93505050620004ce60408501620003b7565b90509250925092565b600181811c90821680620004ec57607f821691505b602082108114156200050e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61258b806200053a6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063b88d4fde116100b8578063e72db5fd1161007c578063e72db5fd14610486578063e8cd0da2146104ad578063e985e9c5146104c0578063f2fde38b146104fc578063f5ad7ca91461050f57600080fd5b8063b88d4fde1461043c578063c66828621461044f578063c87b56dd14610457578063d547741f1461046a578063d5abeb011461047d57600080fd5b80639559c0bd116100ff5780639559c0bd146103fe57806395d89b4114610406578063a217fddf1461040e578063a22cb46514610416578063a89ae4ba1461042957600080fd5b806370a08231146103bf578063715018a6146103d25780638da5cb5b146103da57806391d14854146103eb57600080fd5b806336568abe116101b35780634c69c00f116101825780634c69c00f1461036a5780635283da091461037d57806355f804b3146103915780636352211e146103a45780636c0360eb146103b757600080fd5b806336568abe1461031c57806338013f021461032f57806340c10f191461034457806342842e0e1461035757600080fd5b8063095ea7b3116101fa578063095ea7b3146102a957806318160ddd146102bc57806323b872dd146102d3578063248a9ca3146102e65780632f2ff15d1461030957600080fd5b806301ffc9a71461022c57806306d9ff5d1461025457806306fdde0314610269578063081812fc1461027e575b600080fd5b61023f61023a366004611fc4565b610522565b60405190151581526020015b60405180910390f35b610267610262366004611e96565b610533565b005b6102716105d3565b60405161024b9190612217565b61029161028c366004611f88565b610665565b6040516001600160a01b03909116815260200161024b565b6102676102b7366004611f0e565b6106fa565b6102c5600c5481565b60405190815260200161024b565b6102676102e1366004611dde565b610810565b6102c56102f4366004611f88565b60009081526007602052604090206001015490565b610267610317366004611fa1565b610841565b61026761032a366004611fa1565b610866565b6102c560008051602061253683398151915281565b610267610352366004611f0e565b6108e4565b610267610365366004611dde565b610954565b610267610378366004611d90565b61096f565b600d5461023f90600160a01b900460ff1681565b61026761039f366004611ffe565b6109f8565b6102916103b2366004611f88565b610a35565b610271610aac565b6102c56103cd366004611d90565b610b3a565b610267610bc1565b6006546001600160a01b0316610291565b61023f6103f9366004611fa1565b610bf7565b6102c5601481565b610271610c22565b6102c5600081565b610267610424366004611ee4565b610c31565b600d54610291906001600160a01b031681565b61026761044a366004611e1a565b610c3c565b610271610c6e565b610271610465366004611f88565b610c7b565b610267610478366004611fa1565b610d5e565b6102c5600b5481565b6102c57f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f281565b6102676104bb366004611f38565b610d83565b61023f6104ce366004611dab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61026761050a366004611d90565b610f52565b61026761051d366004611f6d565b610fed565b600061052d82611035565b92915050565b60008051602061253683398151915261054c8133610bf7565b6008906105755760405162461bcd60e51b815260040161056c919061222a565b60405180910390fd5b5060005b82518110156105cd576105a584848381518110610598576105986124f3565b602002602001015161105a565b600c80549060006105b583612498565b919050555080806105c590612498565b915050610579565b50505050565b6060600080546105e29061245d565b80601f016020809104026020016040519081016040528092919081815260200182805461060e9061245d565b801561065b5780601f106106305761010080835404028352916020019161065b565b820191906000526020600020905b81548152906001019060200180831161063e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056c565b506000908152600460205260409020546001600160a01b031690565b600061070582610a35565b9050806001600160a01b0316836001600160a01b031614156107735760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056c565b336001600160a01b038216148061078f575061078f81336104ce565b6108015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056c565b61080b838361119c565b505050565b61081a338261120a565b6108365760405162461bcd60e51b815260040161056c90612336565b61080b838383611301565b60008281526007602052604090206001015461085c8161149d565b61080b83836114a7565b6001600160a01b03811633146108d65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161056c565b6108e0828261152d565b5050565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f261090f8133610bf7565b60089061092f5760405162461bcd60e51b815260040161056c919061222a565b5061093a838361105a565b600c805490600061094a83612498565b9190505550505050565b61080b83838360405180602001604052806000815250610c3c565b6006546001600160a01b031633146109995760405162461bcd60e51b815260040161056c90612301565b600d546109be90600080516020612536833981519152906001600160a01b031661152d565b6109d6600080516020612536833981519152826114a7565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610a225760405162461bcd60e51b815260040161056c90612301565b80516108e0906009906020840190611bed565b6000818152600260205260408120546001600160a01b03168061052d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056c565b60098054610ab99061245d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae59061245d565b8015610b325780601f10610b0757610100808354040283529160200191610b32565b820191906000526020600020905b815481529060010190602001808311610b1557829003601f168201915b505050505081565b60006001600160a01b038216610ba55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610beb5760405162461bcd60e51b815260040161056c90612301565b610bf56000611594565b565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600180546105e29061245d565b6108e03383836115e6565b610c46338361120a565b610c625760405162461bcd60e51b815260040161056c90612336565b6105cd848484846116b5565b600a8054610ab99061245d565b6000818152600260205260409020546060906001600160a01b0316610cff5760405162461bcd60e51b815260206004820152603460248201527f457870616e73696f6e576569726450756e6b733a20555249207175657279206660448201527337b9103737b732bc34b9ba32b73a103a37b5b2b760611b606482015260840161056c565b6000610d096116e8565b90506000815111610d295760405180602001604052806000815250610d57565b80610d33846116f7565b600a604051602001610d4793929190612073565b6040516020818303038152906040525b9392505050565b600082815260076020526040902060010154610d798161149d565b61080b838361152d565b600d54600160a01b900460ff16610d9957600080fd5b601481511115610df65760405162461bcd60e51b815260206004820152602260248201527f457870616e73696f6e576569726450756e6b733a2045786365656473206c696d6044820152611a5d60f21b606482015260840161056c565b60005b8151811015610f1557610e24828281518110610e1757610e176124f3565b6020026020010151610a35565b6001600160a01b0316336001600160a01b031614828281518110610e4a57610e4a6124f3565b6020026020010151604051602001610e9d91907f457870616e73696f6e576569726450756e6b733a20496e76616c6964206f776e815265032b91037b3160d51b6020820152602681019190915260460190565b60405160208183030381529060405290610eca5760405162461bcd60e51b815260040161056c9190612217565b50610eed828281518110610ee057610ee06124f3565b60200260200101516117f5565b600c8054906000610efd83612446565b91905055508080610f0d90612498565b915050610df9565b507f304cfb620bc5a605db7a6151ece130af99f274449f653b95084688029e0467a03382604051610f479291906121c1565b60405180910390a150565b6006546001600160a01b03163314610f7c5760405162461bcd60e51b815260040161056c90612301565b6001600160a01b038116610fe15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056c565b610fea81611594565b50565b6006546001600160a01b031633146110175760405162461bcd60e51b815260040161056c90612301565b600d8054911515600160a01b0260ff60a01b19909216919091179055565b60006001600160e01b03198216637965db0b60e01b148061052d575061052d82611890565b6001600160a01b0382166110b05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056c565b6000818152600260205260409020546001600160a01b0316156111155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056c565b6001600160a01b038216600090815260036020526040812080546001929061113e9084906123b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111d182610a35565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056c565b600061128e83610a35565b9050806001600160a01b0316846001600160a01b031614806112d557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112f95750836001600160a01b03166112ee84610665565b6001600160a01b0316145b949350505050565b826001600160a01b031661131482610a35565b6001600160a01b0316146113785760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161056c565b6001600160a01b0382166113da5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056c565b6113e560008261119c565b6001600160a01b038316600090815260036020526040812080546001929061140e908490612403565b90915550506001600160a01b038216600090815260036020526040812080546001929061143c9084906123b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fea81336118e0565b6114b18282610bf7565b6108e05760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556114e93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6115378282610bf7565b156108e05760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116485760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116c0848484611301565b6116cc84848484611944565b6105cd5760405162461bcd60e51b815260040161056c906122af565b6060600980546105e29061245d565b60608161171b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611745578061172f81612498565b915061173e9050600a836123d0565b915061171f565b60008167ffffffffffffffff81111561176057611760612509565b6040519080825280601f01601f19166020018201604052801561178a576020820181803683370190505b5090505b84156112f95761179f600183612403565b91506117ac600a866124b3565b6117b79060306123b8565b60f81b8183815181106117cc576117cc6124f3565b60200101906001600160f81b031916908160001a9053506117ee600a866123d0565b945061178e565b600061180082610a35565b905061180d60008361119c565b6001600160a01b0381166000908152600360205260408120805460019290611836908490612403565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b14806118c157506001600160e01b03198216635b5e139f60e01b145b8061052d57506301ffc9a760e01b6001600160e01b031983161461052d565b6118ea8282610bf7565b6108e057611902816001600160a01b03166014611a51565b61190d836020611a51565b60405160200161191e92919061210f565b60408051601f198184030181529082905262461bcd60e51b825261056c91600401612217565b60006001600160a01b0384163b15611a4657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611988903390899088908890600401612184565b602060405180830381600087803b1580156119a257600080fd5b505af19250505080156119d2575060408051601f3d908101601f191682019092526119cf91810190611fe1565b60015b611a2c573d808015611a00576040519150601f19603f3d011682016040523d82523d6000602084013e611a05565b606091505b508051611a245760405162461bcd60e51b815260040161056c906122af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f9565b506001949350505050565b60606000611a608360026123e4565b611a6b9060026123b8565b67ffffffffffffffff811115611a8357611a83612509565b6040519080825280601f01601f191660200182016040528015611aad576020820181803683370190505b509050600360fc1b81600081518110611ac857611ac86124f3565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611af757611af76124f3565b60200101906001600160f81b031916908160001a9053506000611b1b8460026123e4565b611b269060016123b8565b90505b6001811115611b9e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b5a57611b5a6124f3565b1a60f81b828281518110611b7057611b706124f3565b60200101906001600160f81b031916908160001a90535060049490941c93611b9781612446565b9050611b29565b508315610d575760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161056c565b828054611bf99061245d565b90600052602060002090601f016020900481019282611c1b5760008555611c61565b82601f10611c3457805160ff1916838001178555611c61565b82800160010185558215611c61579182015b82811115611c61578251825591602001919060010190611c46565b50611c6d929150611c71565b5090565b5b80821115611c6d5760008155600101611c72565b600067ffffffffffffffff831115611ca057611ca0612509565b611cb3601f8401601f1916602001612387565b9050828152838383011115611cc757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cf557600080fd5b919050565b600082601f830112611d0b57600080fd5b8135602067ffffffffffffffff821115611d2757611d27612509565b8160051b611d36828201612387565b838152828101908684018388018501891015611d5157600080fd5b600093505b85841015611d74578035835260019390930192918401918401611d56565b50979650505050505050565b80358015158114611cf557600080fd5b600060208284031215611da257600080fd5b610d5782611cde565b60008060408385031215611dbe57600080fd5b611dc783611cde565b9150611dd560208401611cde565b90509250929050565b600080600060608486031215611df357600080fd5b611dfc84611cde565b9250611e0a60208501611cde565b9150604084013590509250925092565b60008060008060808587031215611e3057600080fd5b611e3985611cde565b9350611e4760208601611cde565b925060408501359150606085013567ffffffffffffffff811115611e6a57600080fd5b8501601f81018713611e7b57600080fd5b611e8a87823560208401611c86565b91505092959194509250565b60008060408385031215611ea957600080fd5b611eb283611cde565b9150602083013567ffffffffffffffff811115611ece57600080fd5b611eda85828601611cfa565b9150509250929050565b60008060408385031215611ef757600080fd5b611f0083611cde565b9150611dd560208401611d80565b60008060408385031215611f2157600080fd5b611f2a83611cde565b946020939093013593505050565b600060208284031215611f4a57600080fd5b813567ffffffffffffffff811115611f6157600080fd5b6112f984828501611cfa565b600060208284031215611f7f57600080fd5b610d5782611d80565b600060208284031215611f9a57600080fd5b5035919050565b60008060408385031215611fb457600080fd5b82359150611dd560208401611cde565b600060208284031215611fd657600080fd5b8135610d578161251f565b600060208284031215611ff357600080fd5b8151610d578161251f565b60006020828403121561201057600080fd5b813567ffffffffffffffff81111561202757600080fd5b8201601f8101841361203857600080fd5b6112f984823560208401611c86565b6000815180845261205f81602086016020860161241a565b601f01601f19169290920160200192915050565b6000845160206120868285838a0161241a565b8551918401916120998184848a0161241a565b85549201916000906120aa8161245d565b600182811680156120c257600181146120d3576120ff565b60ff198416875282870194506120ff565b896000528560002060005b848110156120f7578154898201529083019087016120de565b505082870194505b50929a9950505050505050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161214781601785016020880161241a565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161217881602884016020880161241a565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b790830184612047565b9695505050505050565b6001600160a01b038316815260406020808301829052835191830182905260009184820191906060850190845b8181101561220a578451835293830193918301916001016121ee565b5090979650505050505050565b602081526000610d576020830184612047565b600060208083526000845461223e8161245d565b8084870152604060018084166000811461225f5760018114612273576122a1565b60ff198516898401526060890195506122a1565b896000528660002060005b858110156122995781548b820186015290830190880161227e565b8a0184019650505b509398975050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123b0576123b0612509565b604052919050565b600082198211156123cb576123cb6124c7565b500190565b6000826123df576123df6124dd565b500490565b60008160001904831182151516156123fe576123fe6124c7565b500290565b600082821015612415576124156124c7565b500390565b60005b8381101561243557818101518382015260200161241d565b838111156105cd5750506000910152565b600081612455576124556124c7565b506000190190565b600181811c9082168061247157607f821691505b6020821081141561249257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ac576124ac6124c7565b5060010190565b6000826124c2576124c26124dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fea57600080fdfe352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c8a26469706673582212201904c77c6a0071826cb5bf90378a632b012321af98d91af48f5edeb7e60948b664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000932532aa4c0174b8453839a6e44ee09cc615f2b700000000000000000000000095cce6f5e3ade23044dd91b7f28bfd8c733612b50000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d634e4152506b4a694b48566979735251747356514c456e5a476e7073316f566b61384a716d693971646962662f00000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063b88d4fde116100b8578063e72db5fd1161007c578063e72db5fd14610486578063e8cd0da2146104ad578063e985e9c5146104c0578063f2fde38b146104fc578063f5ad7ca91461050f57600080fd5b8063b88d4fde1461043c578063c66828621461044f578063c87b56dd14610457578063d547741f1461046a578063d5abeb011461047d57600080fd5b80639559c0bd116100ff5780639559c0bd146103fe57806395d89b4114610406578063a217fddf1461040e578063a22cb46514610416578063a89ae4ba1461042957600080fd5b806370a08231146103bf578063715018a6146103d25780638da5cb5b146103da57806391d14854146103eb57600080fd5b806336568abe116101b35780634c69c00f116101825780634c69c00f1461036a5780635283da091461037d57806355f804b3146103915780636352211e146103a45780636c0360eb146103b757600080fd5b806336568abe1461031c57806338013f021461032f57806340c10f191461034457806342842e0e1461035757600080fd5b8063095ea7b3116101fa578063095ea7b3146102a957806318160ddd146102bc57806323b872dd146102d3578063248a9ca3146102e65780632f2ff15d1461030957600080fd5b806301ffc9a71461022c57806306d9ff5d1461025457806306fdde0314610269578063081812fc1461027e575b600080fd5b61023f61023a366004611fc4565b610522565b60405190151581526020015b60405180910390f35b610267610262366004611e96565b610533565b005b6102716105d3565b60405161024b9190612217565b61029161028c366004611f88565b610665565b6040516001600160a01b03909116815260200161024b565b6102676102b7366004611f0e565b6106fa565b6102c5600c5481565b60405190815260200161024b565b6102676102e1366004611dde565b610810565b6102c56102f4366004611f88565b60009081526007602052604090206001015490565b610267610317366004611fa1565b610841565b61026761032a366004611fa1565b610866565b6102c560008051602061253683398151915281565b610267610352366004611f0e565b6108e4565b610267610365366004611dde565b610954565b610267610378366004611d90565b61096f565b600d5461023f90600160a01b900460ff1681565b61026761039f366004611ffe565b6109f8565b6102916103b2366004611f88565b610a35565b610271610aac565b6102c56103cd366004611d90565b610b3a565b610267610bc1565b6006546001600160a01b0316610291565b61023f6103f9366004611fa1565b610bf7565b6102c5601481565b610271610c22565b6102c5600081565b610267610424366004611ee4565b610c31565b600d54610291906001600160a01b031681565b61026761044a366004611e1a565b610c3c565b610271610c6e565b610271610465366004611f88565b610c7b565b610267610478366004611fa1565b610d5e565b6102c5600b5481565b6102c57f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f281565b6102676104bb366004611f38565b610d83565b61023f6104ce366004611dab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61026761050a366004611d90565b610f52565b61026761051d366004611f6d565b610fed565b600061052d82611035565b92915050565b60008051602061253683398151915261054c8133610bf7565b6008906105755760405162461bcd60e51b815260040161056c919061222a565b60405180910390fd5b5060005b82518110156105cd576105a584848381518110610598576105986124f3565b602002602001015161105a565b600c80549060006105b583612498565b919050555080806105c590612498565b915050610579565b50505050565b6060600080546105e29061245d565b80601f016020809104026020016040519081016040528092919081815260200182805461060e9061245d565b801561065b5780601f106106305761010080835404028352916020019161065b565b820191906000526020600020905b81548152906001019060200180831161063e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056c565b506000908152600460205260409020546001600160a01b031690565b600061070582610a35565b9050806001600160a01b0316836001600160a01b031614156107735760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056c565b336001600160a01b038216148061078f575061078f81336104ce565b6108015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056c565b61080b838361119c565b505050565b61081a338261120a565b6108365760405162461bcd60e51b815260040161056c90612336565b61080b838383611301565b60008281526007602052604090206001015461085c8161149d565b61080b83836114a7565b6001600160a01b03811633146108d65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161056c565b6108e0828261152d565b5050565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f261090f8133610bf7565b60089061092f5760405162461bcd60e51b815260040161056c919061222a565b5061093a838361105a565b600c805490600061094a83612498565b9190505550505050565b61080b83838360405180602001604052806000815250610c3c565b6006546001600160a01b031633146109995760405162461bcd60e51b815260040161056c90612301565b600d546109be90600080516020612536833981519152906001600160a01b031661152d565b6109d6600080516020612536833981519152826114a7565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610a225760405162461bcd60e51b815260040161056c90612301565b80516108e0906009906020840190611bed565b6000818152600260205260408120546001600160a01b03168061052d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056c565b60098054610ab99061245d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae59061245d565b8015610b325780601f10610b0757610100808354040283529160200191610b32565b820191906000526020600020905b815481529060010190602001808311610b1557829003601f168201915b505050505081565b60006001600160a01b038216610ba55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610beb5760405162461bcd60e51b815260040161056c90612301565b610bf56000611594565b565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600180546105e29061245d565b6108e03383836115e6565b610c46338361120a565b610c625760405162461bcd60e51b815260040161056c90612336565b6105cd848484846116b5565b600a8054610ab99061245d565b6000818152600260205260409020546060906001600160a01b0316610cff5760405162461bcd60e51b815260206004820152603460248201527f457870616e73696f6e576569726450756e6b733a20555249207175657279206660448201527337b9103737b732bc34b9ba32b73a103a37b5b2b760611b606482015260840161056c565b6000610d096116e8565b90506000815111610d295760405180602001604052806000815250610d57565b80610d33846116f7565b600a604051602001610d4793929190612073565b6040516020818303038152906040525b9392505050565b600082815260076020526040902060010154610d798161149d565b61080b838361152d565b600d54600160a01b900460ff16610d9957600080fd5b601481511115610df65760405162461bcd60e51b815260206004820152602260248201527f457870616e73696f6e576569726450756e6b733a2045786365656473206c696d6044820152611a5d60f21b606482015260840161056c565b60005b8151811015610f1557610e24828281518110610e1757610e176124f3565b6020026020010151610a35565b6001600160a01b0316336001600160a01b031614828281518110610e4a57610e4a6124f3565b6020026020010151604051602001610e9d91907f457870616e73696f6e576569726450756e6b733a20496e76616c6964206f776e815265032b91037b3160d51b6020820152602681019190915260460190565b60405160208183030381529060405290610eca5760405162461bcd60e51b815260040161056c9190612217565b50610eed828281518110610ee057610ee06124f3565b60200260200101516117f5565b600c8054906000610efd83612446565b91905055508080610f0d90612498565b915050610df9565b507f304cfb620bc5a605db7a6151ece130af99f274449f653b95084688029e0467a03382604051610f479291906121c1565b60405180910390a150565b6006546001600160a01b03163314610f7c5760405162461bcd60e51b815260040161056c90612301565b6001600160a01b038116610fe15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056c565b610fea81611594565b50565b6006546001600160a01b031633146110175760405162461bcd60e51b815260040161056c90612301565b600d8054911515600160a01b0260ff60a01b19909216919091179055565b60006001600160e01b03198216637965db0b60e01b148061052d575061052d82611890565b6001600160a01b0382166110b05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056c565b6000818152600260205260409020546001600160a01b0316156111155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056c565b6001600160a01b038216600090815260036020526040812080546001929061113e9084906123b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111d182610a35565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056c565b600061128e83610a35565b9050806001600160a01b0316846001600160a01b031614806112d557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112f95750836001600160a01b03166112ee84610665565b6001600160a01b0316145b949350505050565b826001600160a01b031661131482610a35565b6001600160a01b0316146113785760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161056c565b6001600160a01b0382166113da5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056c565b6113e560008261119c565b6001600160a01b038316600090815260036020526040812080546001929061140e908490612403565b90915550506001600160a01b038216600090815260036020526040812080546001929061143c9084906123b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fea81336118e0565b6114b18282610bf7565b6108e05760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556114e93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6115378282610bf7565b156108e05760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116485760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116c0848484611301565b6116cc84848484611944565b6105cd5760405162461bcd60e51b815260040161056c906122af565b6060600980546105e29061245d565b60608161171b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611745578061172f81612498565b915061173e9050600a836123d0565b915061171f565b60008167ffffffffffffffff81111561176057611760612509565b6040519080825280601f01601f19166020018201604052801561178a576020820181803683370190505b5090505b84156112f95761179f600183612403565b91506117ac600a866124b3565b6117b79060306123b8565b60f81b8183815181106117cc576117cc6124f3565b60200101906001600160f81b031916908160001a9053506117ee600a866123d0565b945061178e565b600061180082610a35565b905061180d60008361119c565b6001600160a01b0381166000908152600360205260408120805460019290611836908490612403565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b14806118c157506001600160e01b03198216635b5e139f60e01b145b8061052d57506301ffc9a760e01b6001600160e01b031983161461052d565b6118ea8282610bf7565b6108e057611902816001600160a01b03166014611a51565b61190d836020611a51565b60405160200161191e92919061210f565b60408051601f198184030181529082905262461bcd60e51b825261056c91600401612217565b60006001600160a01b0384163b15611a4657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611988903390899088908890600401612184565b602060405180830381600087803b1580156119a257600080fd5b505af19250505080156119d2575060408051601f3d908101601f191682019092526119cf91810190611fe1565b60015b611a2c573d808015611a00576040519150601f19603f3d011682016040523d82523d6000602084013e611a05565b606091505b508051611a245760405162461bcd60e51b815260040161056c906122af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f9565b506001949350505050565b60606000611a608360026123e4565b611a6b9060026123b8565b67ffffffffffffffff811115611a8357611a83612509565b6040519080825280601f01601f191660200182016040528015611aad576020820181803683370190505b509050600360fc1b81600081518110611ac857611ac86124f3565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611af757611af76124f3565b60200101906001600160f81b031916908160001a9053506000611b1b8460026123e4565b611b269060016123b8565b90505b6001811115611b9e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b5a57611b5a6124f3565b1a60f81b828281518110611b7057611b706124f3565b60200101906001600160f81b031916908160001a90535060049490941c93611b9781612446565b9050611b29565b508315610d575760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161056c565b828054611bf99061245d565b90600052602060002090601f016020900481019282611c1b5760008555611c61565b82601f10611c3457805160ff1916838001178555611c61565b82800160010185558215611c61579182015b82811115611c61578251825591602001919060010190611c46565b50611c6d929150611c71565b5090565b5b80821115611c6d5760008155600101611c72565b600067ffffffffffffffff831115611ca057611ca0612509565b611cb3601f8401601f1916602001612387565b9050828152838383011115611cc757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cf557600080fd5b919050565b600082601f830112611d0b57600080fd5b8135602067ffffffffffffffff821115611d2757611d27612509565b8160051b611d36828201612387565b838152828101908684018388018501891015611d5157600080fd5b600093505b85841015611d74578035835260019390930192918401918401611d56565b50979650505050505050565b80358015158114611cf557600080fd5b600060208284031215611da257600080fd5b610d5782611cde565b60008060408385031215611dbe57600080fd5b611dc783611cde565b9150611dd560208401611cde565b90509250929050565b600080600060608486031215611df357600080fd5b611dfc84611cde565b9250611e0a60208501611cde565b9150604084013590509250925092565b60008060008060808587031215611e3057600080fd5b611e3985611cde565b9350611e4760208601611cde565b925060408501359150606085013567ffffffffffffffff811115611e6a57600080fd5b8501601f81018713611e7b57600080fd5b611e8a87823560208401611c86565b91505092959194509250565b60008060408385031215611ea957600080fd5b611eb283611cde565b9150602083013567ffffffffffffffff811115611ece57600080fd5b611eda85828601611cfa565b9150509250929050565b60008060408385031215611ef757600080fd5b611f0083611cde565b9150611dd560208401611d80565b60008060408385031215611f2157600080fd5b611f2a83611cde565b946020939093013593505050565b600060208284031215611f4a57600080fd5b813567ffffffffffffffff811115611f6157600080fd5b6112f984828501611cfa565b600060208284031215611f7f57600080fd5b610d5782611d80565b600060208284031215611f9a57600080fd5b5035919050565b60008060408385031215611fb457600080fd5b82359150611dd560208401611cde565b600060208284031215611fd657600080fd5b8135610d578161251f565b600060208284031215611ff357600080fd5b8151610d578161251f565b60006020828403121561201057600080fd5b813567ffffffffffffffff81111561202757600080fd5b8201601f8101841361203857600080fd5b6112f984823560208401611c86565b6000815180845261205f81602086016020860161241a565b601f01601f19169290920160200192915050565b6000845160206120868285838a0161241a565b8551918401916120998184848a0161241a565b85549201916000906120aa8161245d565b600182811680156120c257600181146120d3576120ff565b60ff198416875282870194506120ff565b896000528560002060005b848110156120f7578154898201529083019087016120de565b505082870194505b50929a9950505050505050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161214781601785016020880161241a565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161217881602884016020880161241a565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b790830184612047565b9695505050505050565b6001600160a01b038316815260406020808301829052835191830182905260009184820191906060850190845b8181101561220a578451835293830193918301916001016121ee565b5090979650505050505050565b602081526000610d576020830184612047565b600060208083526000845461223e8161245d565b8084870152604060018084166000811461225f5760018114612273576122a1565b60ff198516898401526060890195506122a1565b896000528660002060005b858110156122995781548b820186015290830190880161227e565b8a0184019650505b509398975050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123b0576123b0612509565b604052919050565b600082198211156123cb576123cb6124c7565b500190565b6000826123df576123df6124dd565b500490565b60008160001904831182151516156123fe576123fe6124c7565b500290565b600082821015612415576124156124c7565b500390565b60005b8381101561243557818101518382015260200161241d565b838111156105cd5750506000910152565b600081612455576124556124c7565b506000190190565b600181811c9082168061247157607f821691505b6020821081141561249257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ac576124ac6124c7565b5060010190565b6000826124c2576124c26124dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fea57600080fdfe352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c8a26469706673582212201904c77c6a0071826cb5bf90378a632b012321af98d91af48f5edeb7e60948b664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000932532aa4c0174b8453839a6e44ee09cc615f2b700000000000000000000000095cce6f5e3ade23044dd91b7f28bfd8c733612b50000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d634e4152506b4a694b48566979735251747356514c456e5a476e7073316f566b61384a716d693971646962662f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmcNARPkJiKHViysRQtsVQLEnZGnps1oVka8Jqmi9qdibf/
Arg [1] : _MintableAssetProxy (address): 0x932532aA4c0174b8453839A6E44eE09Cc615F2b7
Arg [2] : _oracleAddress (address): 0x95Cce6F5E3AdE23044dD91B7F28BfD8C733612b5
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000932532aa4c0174b8453839a6e44ee09cc615f2b7
Arg [2] : 00000000000000000000000095cce6f5e3ade23044dd91b7f28bfd8c733612b5
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d634e4152506b4a694b48566979735251747356514c456e
Arg [5] : 5a476e7073316f566b61384a716d693971646962662f00000000000000000000
Deployed Bytecode Sourcemap
792:2763:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1346:170;;;;;;:::i;:::-;;:::i;:::-;;;10276:14:15;;10269:22;10251:41;;10239:2;10224:18;1346:170:6;;;;;;;;2141:186;;;;;;:::i;:::-;;:::i;:::-;;2501:100:5;;;:::i;:::-;;;;;;;:::i;4061:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8840:32:15;;;8822:51;;8810:2;8795:18;4061:221:5;8676:203:15;3584:411:5;;;;;;:::i;:::-;;:::i;1002:33:6:-;;;;;;;;;10449:25:15;;;10437:2;10422:18;1002:33:6;10303:177:15;4811:339:5;;;;;;:::i;:::-;;:::i;4483:131:0:-;;;;;;:::i;:::-;4557:7;4584:12;;;:6;:12;;;;;:22;;;;4483:131;4876:147;;;;;;:::i;:::-;;:::i;5924:218::-;;;;;;:::i;:::-;;:::i;1113:52:6:-;;-1:-1:-1;;;;;;;;;;;1113:52:6;;2007:128;;;;;;:::i;:::-;;:::i;5221:185:5:-;;;;;;:::i;:::-;;:::i;3354:198:6:-;;;;;;:::i;:::-;;:::i;1203:33::-;;;;;-1:-1:-1;;;1203:33:6;;;;;;3155:98;;;;;;:::i;:::-;;:::i;2195:239:5:-;;;;;;:::i;:::-;;:::i;898:21:6:-;;;:::i;1925:208:5:-;;;;;;:::i;:::-;;:::i;1714:103:12:-;;;:::i;1063:87::-;1136:6;;-1:-1:-1;;;;;1136:6:12;1063:87;;2943:147:0;;;;;;:::i;:::-;;:::i;1241:40:6:-;;1279:2;1241:40;;2670:104:5;;;:::i;2048:49:0:-;;2093:4;2048:49;;4354:155:5;;;;;;:::i;:::-;;:::i;1170:28:6:-;;;;;-1:-1:-1;;;;;1170:28:6;;;5477:328:5;;;;;;:::i;:::-;;:::i;924:37:6:-;;;:::i;2768:380::-;;;;;;:::i;:::-;;:::i;5268:149:0:-;;;;;;:::i;:::-;;:::i;966:31:6:-;;;;;;1040:68;;1081:27;1040:68;;2334:427;;;;;;:::i;:::-;;:::i;4580:164:5:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4701:25:5;;;4677:4;4701:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4580:164;1972:201:12;;;;;;:::i;:::-;;:::i;3259:89:6:-;;;;;;:::i;:::-;;:::i;1346:170::-;1454:4;1474:36;1498:11;1474:23;:36::i;:::-;1467:43;1346:170;-1:-1:-1;;1346:170:6:o;2141:186::-;-1:-1:-1;;;;;;;;;;;407:27:1;1146:19:6;736:10:3;2943:147:0;:::i;407:27:1:-;449:10;385:85;;;;;-1:-1:-1;;;385:85:1;;;;;;;;:::i;:::-;;;;;;;;;;2232:9:6::1;2227:95;2247:3;:10;2243:1;:14;2227:95;;;2273:19;2279:4;2285:3;2289:1;2285:6;;;;;;;;:::i;:::-;;;;;;;2273:5;:19::i;:::-;2301:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;2259:3;;;;;:::i;:::-;;;;2227:95;;;;2141:186:::0;;;:::o;2501:100:5:-;2555:13;2588:5;2581:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2501:100;:::o;4061:221::-;4137:7;7404:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7404:16:5;4157:73;;;;-1:-1:-1;;;4157:73:5;;16992:2:15;4157:73:5;;;16974:21:15;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;-1:-1:-1;;;17121:18:15;;;17114:42;17173:19;;4157:73:5;16790:408:15;4157:73:5;-1:-1:-1;4250:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4250:24:5;;4061:221::o;3584:411::-;3665:13;3681:23;3696:7;3681:14;:23::i;:::-;3665:39;;3729:5;-1:-1:-1;;;;;3723:11:5;:2;-1:-1:-1;;;;;3723:11:5;;;3715:57;;;;-1:-1:-1;;;3715:57:5;;17766:2:15;3715:57:5;;;17748:21:15;17805:2;17785:18;;;17778:30;17844:34;17824:18;;;17817:62;-1:-1:-1;;;17895:18:15;;;17888:31;17936:19;;3715:57:5;17564:397:15;3715:57:5;736:10:3;-1:-1:-1;;;;;3807:21:5;;;;:62;;-1:-1:-1;3832:37:5;3849:5;736:10:3;4580:164:5;:::i;3832:37::-;3785:168;;;;-1:-1:-1;;;3785:168:5;;15385:2:15;3785:168:5;;;15367:21:15;15424:2;15404:18;;;15397:30;15463:34;15443:18;;;15436:62;15534:26;15514:18;;;15507:54;15578:19;;3785:168:5;15183:420:15;3785:168:5;3966:21;3975:2;3979:7;3966:8;:21::i;:::-;3654:341;3584:411;;:::o;4811:339::-;5006:41;736:10:3;5039:7:5;5006:18;:41::i;:::-;4998:103;;;;-1:-1:-1;;;4998:103:5;;;;;;;:::i;:::-;5114:28;5124:4;5130:2;5134:7;5114:9;:28::i;4876:147:0:-;4557:7;4584:12;;;:6;:12;;;;;:22;;;2539:16;2550:4;2539:10;:16::i;:::-;4990:25:::1;5001:4;5007:7;4990:10;:25::i;5924:218::-:0;-1:-1:-1;;;;;6020:23:0;;736:10:3;6020:23:0;6012:83;;;;-1:-1:-1;;;6012:83:0;;18989:2:15;6012:83:0;;;18971:21:15;19028:2;19008:18;;;19001:30;19067:34;19047:18;;;19040:62;-1:-1:-1;;;19118:18:15;;;19111:45;19173:19;;6012:83:0;18787:411:15;6012:83:0;6108:26;6120:4;6126:7;6108:11;:26::i;:::-;5924:218;;:::o;2007:128:6:-;1081:27;407::1;1081::6;736:10:3;2943:147:0;:::i;407:27:1:-;449:10;385:85;;;;;-1:-1:-1;;;385:85:1;;;;;;;;:::i;:::-;;2089:20:6::1;2095:4;2101:7;2089:5;:20::i;:::-;2116:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;2007:128:::0;;;:::o;5221:185:5:-;5359:39;5376:4;5382:2;5386:7;5359:39;;;;;;;;;;;;:16;:39::i;3354:198:6:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:3;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;3450:13:6::1;::::0;3430:34:::1;::::0;-1:-1:-1;;;;;;;;;;;1146:19:6;-1:-1:-1;;;;;3450:13:6::1;3430:11;:34::i;:::-;3471:36;-1:-1:-1::0;;;;;;;;;;;3490:16:6::1;3471:10;:36::i;:::-;3514:13;:32:::0;;-1:-1:-1;;;;;;3514:32:6::1;-1:-1:-1::0;;;;;3514:32:6;;;::::1;::::0;;;::::1;::::0;;3354:198::o;3155:98::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:3;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;3226:21:6;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;2195:239:5:-:0;2267:7;2303:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2303:16:5;2338:19;2330:73;;;;-1:-1:-1;;;2330:73:5;;16221:2:15;2330:73:5;;;16203:21:15;16260:2;16240:18;;;16233:30;16299:34;16279:18;;;16272:62;-1:-1:-1;;;16350:18:15;;;16343:39;16399:19;;2330:73:5;16019:405:15;898:21:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1925:208:5:-;1997:7;-1:-1:-1;;;;;2025:19:5;;2017:74;;;;-1:-1:-1;;;2017:74:5;;15810:2:15;2017:74:5;;;15792:21:15;15849:2;15829:18;;;15822:30;15888:34;15868:18;;;15861:62;-1:-1:-1;;;15939:18:15;;;15932:40;15989:19;;2017:74:5;15608:406:15;2017:74:5;-1:-1:-1;;;;;;2109:16:5;;;;;:9;:16;;;;;;;1925:208::o;1714:103:12:-;1136:6;;-1:-1:-1;;;;;1136:6:12;736:10:3;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;2943:147:0:-;3029:4;3053:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;3053:29:0;;;;;;;;;;;;;;;2943:147::o;2670:104:5:-;2726:13;2759:7;2752:14;;;;;:::i;4354:155::-;4449:52;736:10:3;4482:8:5;4492;4449:18;:52::i;5477:328::-;5652:41;736:10:3;5685:7:5;5652:18;:41::i;:::-;5644:103;;;;-1:-1:-1;;;5644:103:5;;;;;;;:::i;:::-;5758:39;5772:4;5778:2;5782:7;5791:5;5758:13;:39::i;924:37:6:-;;;;;;;:::i;2768:380::-;7380:4:5;7404:16;;;:7;:16;;;;;;2841:13:6;;-1:-1:-1;;;;;7404:16:5;2863:81:6;;;;-1:-1:-1;;;2863:81:6;;13792:2:15;2863:81:6;;;13774:21:15;13831:2;13811:18;;;13804:30;13870:34;13850:18;;;13843:62;-1:-1:-1;;;13921:18:15;;;13914:50;13981:19;;2863:81:6;13590:416:15;2863:81:6;2954:28;2985:10;:8;:10::i;:::-;2954:41;;3040:1;3015:14;3009:28;:32;:133;;;;;;;;;;;;;;;;;3077:14;3093:18;:7;:16;:18::i;:::-;3113:13;3060:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3009:133;3002:140;2768:380;-1:-1:-1;;;2768:380:6:o;5268:149:0:-;4557:7;4584:12;;;:6;:12;;;;;:22;;;2539:16;2550:4;2539:10;:16::i;:::-;5383:26:::1;5395:4;5401:7;5383:11;:26::i;2334:427:6:-:0;2399:13;;-1:-1:-1;;;2399:13:6;;;;2391:22;;;;;;1279:2;2428:3;:10;:25;;2420:72;;;;-1:-1:-1;;;2420:72:6;;18168:2:15;2420:72:6;;;18150:21:15;18207:2;18187:18;;;18180:30;18246:34;18226:18;;;18219:62;-1:-1:-1;;;18297:18:15;;;18290:32;18339:19;;2420:72:6;17966:398:15;2420:72:6;2504:9;2499:212;2519:3;:10;2515:1;:14;2499:212;;;2567:15;2575:3;2579:1;2575:6;;;;;;;;:::i;:::-;;;;;;;2567:7;:15::i;:::-;-1:-1:-1;;;;;2553:29:6;:10;-1:-1:-1;;;;;2553:29:6;;2650:3;2654:1;2650:6;;;;;;;;:::i;:::-;;;;;;;2591:66;;;;;;;7735:34:15;7723:47;;-1:-1:-1;;;7795:2:15;7786:12;;7779:30;7834:2;7825:12;;7818:28;;;;7871:2;7862:12;;7493:387;2591:66:6;;;;;;;;;;;;;2545:114;;;;;-1:-1:-1;;;2545:114:6;;;;;;;;:::i;:::-;;2668:13;2674:3;2678:1;2674:6;;;;;;;;:::i;:::-;;;;;;;2668:5;:13::i;:::-;2690:11;:13;;;:11;:13;;;:::i;:::-;;;;;;2531:3;;;;;:::i;:::-;;;;2499:212;;;;2722:33;2739:10;2751:3;2722:33;;;;;;;:::i;:::-;;;;;;;;2334:427;:::o;1972:201:12:-;1136:6;;-1:-1:-1;;;;;1136:6:12;736:10:3;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:12;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:12;;12622:2:15;2053:73:12::1;::::0;::::1;12604:21:15::0;12661:2;12641:18;;;12634:30;12700:34;12680:18;;;12673:62;-1:-1:-1;;;12751:18:15;;;12744:36;12797:19;;2053:73:12::1;12420:402:15::0;2053:73:12::1;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;3259:89:6:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:3;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;3321:13:6::1;:21:::0;;;::::1;;-1:-1:-1::0;;;3321:21:6::1;-1:-1:-1::0;;;;3321:21:6;;::::1;::::0;;;::::1;::::0;;3259:89::o;2647:204:0:-;2732:4;-1:-1:-1;;;;;;2756:47:0;;-1:-1:-1;;;2756:47:0;;:87;;;2807:36;2831:11;2807:23;:36::i;9293:439:5:-;-1:-1:-1;;;;;9373:16:5;;9365:61;;;;-1:-1:-1;;;9365:61:5;;16631:2:15;9365:61:5;;;16613:21:15;;;16650:18;;;16643:30;16709:34;16689:18;;;16682:62;16761:18;;9365:61:5;16429:356:15;9365:61:5;7380:4;7404:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7404:16:5;:30;9437:58;;;;-1:-1:-1;;;9437:58:5;;13435:2:15;9437:58:5;;;13417:21:15;13474:2;13454:18;;;13447:30;13513;13493:18;;;13486:58;13561:18;;9437:58:5;13233:352:15;9437:58:5;-1:-1:-1;;;;;9566:13:5;;;;;;:9;:13;;;;;:18;;9583:1;;9566:13;:18;;9583:1;;9566:18;:::i;:::-;;;;-1:-1:-1;;9595:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9595:21:5;-1:-1:-1;;;;;9595:21:5;;;;;;;;9634:33;;9595:16;;;9634:33;;9595:16;;9634:33;5924:218:0;;:::o;11461:174:5:-;11536:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11536:29:5;-1:-1:-1;;;;;11536:29:5;;;;;;;;:24;;11590:23;11536:24;11590:14;:23::i;:::-;-1:-1:-1;;;;;11581:46:5;;;;;;;;;;;11461:174;;:::o;7609:348::-;7702:4;7404:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7404:16:5;7719:73;;;;-1:-1:-1;;;7719:73:5;;14972:2:15;7719:73:5;;;14954:21:15;15011:2;14991:18;;;14984:30;15050:34;15030:18;;;15023:62;-1:-1:-1;;;15101:18:15;;;15094:42;15153:19;;7719:73:5;14770:408:15;7719:73:5;7803:13;7819:23;7834:7;7819:14;:23::i;:::-;7803:39;;7872:5;-1:-1:-1;;;;;7861:16:5;:7;-1:-1:-1;;;;;7861:16:5;;:52;;;-1:-1:-1;;;;;;4701:25:5;;;4677:4;4701:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7881:32;7861:87;;;;7941:7;-1:-1:-1;;;;;7917:31:5;:20;7929:7;7917:11;:20::i;:::-;-1:-1:-1;;;;;7917:31:5;;7861:87;7853:96;7609:348;-1:-1:-1;;;;7609:348:5:o;10718:625::-;10877:4;-1:-1:-1;;;;;10850:31:5;:23;10865:7;10850:14;:23::i;:::-;-1:-1:-1;;;;;10850:31:5;;10842:81;;;;-1:-1:-1;;;10842:81:5;;13029:2:15;10842:81:5;;;13011:21:15;13068:2;13048:18;;;13041:30;13107:34;13087:18;;;13080:62;-1:-1:-1;;;13158:18:15;;;13151:35;13203:19;;10842:81:5;12827:401:15;10842:81:5;-1:-1:-1;;;;;10942:16:5;;10934:65;;;;-1:-1:-1;;;10934:65:5;;14213:2:15;10934:65:5;;;14195:21:15;14252:2;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;-1:-1:-1;;;14342:18:15;;;14335:34;14386:19;;10934:65:5;14011:400:15;10934:65:5;11116:29;11133:1;11137:7;11116:8;:29::i;:::-;-1:-1:-1;;;;;11158:15:5;;;;;;:9;:15;;;;;:20;;11177:1;;11158:15;:20;;11177:1;;11158:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11189:13:5;;;;;;:9;:13;;;;;:18;;11206:1;;11189:13;:18;;11206:1;;11189:18;:::i;:::-;;;;-1:-1:-1;;11218:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11218:21:5;-1:-1:-1;;;;;11218:21:5;;;;;;;;;11257:27;;11218:16;;11257:27;;;;;;;3654:341;3584:411;;:::o;3394:105:0:-;3461:30;3472:4;736:10:3;3461::0;:30::i;7425:238::-;7509:22;7517:4;7523:7;7509;:22::i;:::-;7504:152;;7548:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7548:29:0;;;;;;;;;:36;;-1:-1:-1;;7548:36:0;7580:4;7548:36;;;7631:12;736:10:3;;656:98;7631:12:0;-1:-1:-1;;;;;7604:40:0;7622:7;-1:-1:-1;;;;;7604:40:0;7616:4;7604:40;;;;;;;;;;7425:238;;:::o;7795:239::-;7879:22;7887:4;7893:7;7879;:22::i;:::-;7875:152;;;7950:5;7918:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7918:29:0;;;;;;;;;;:37;;-1:-1:-1;;7918:37:0;;;7975:40;736:10:3;;7918:12:0;;7975:40;;7950:5;7975:40;7795:239;;:::o;2333:191:12:-;2426:6;;;-1:-1:-1;;;;;2443:17:12;;;-1:-1:-1;;;;;;2443:17:12;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;11777:315:5:-;11932:8;-1:-1:-1;;;;;11923:17:5;:5;-1:-1:-1;;;;;11923:17:5;;;11915:55;;;;-1:-1:-1;;;11915:55:5;;14618:2:15;11915:55:5;;;14600:21:15;14657:2;14637:18;;;14630:30;14696:27;14676:18;;;14669:55;14741:18;;11915:55:5;14416:349:15;11915:55:5;-1:-1:-1;;;;;11981:25:5;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11981:46:5;;;;;;;;;;12043:41;;10251::15;;;12043::5;;10224:18:15;12043:41:5;;;;;;;11777:315;;;:::o;6687:::-;6844:28;6854:4;6860:2;6864:7;6844:9;:28::i;:::-;6891:48;6914:4;6920:2;6924:7;6933:5;6891:22;:48::i;:::-;6883:111;;;;-1:-1:-1;;;6883:111:5;;;;;;;:::i;1899:102:6:-;1959:13;1988:7;1981:14;;;;;:::i;342:723:14:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:14;;;;;;;;;;;;-1:-1:-1;;;646:10:14;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:14;;-1:-1:-1;798:2:14;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:14;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:14;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:14;;;;;;;;-1:-1:-1;1003:11:14;1012:2;1003:11;;:::i;:::-;;;872:154;;9961:420:5;10021:13;10037:23;10052:7;10037:14;:23::i;:::-;10021:39;;10162:29;10179:1;10183:7;10162:8;:29::i;:::-;-1:-1:-1;;;;;10204:16:5;;;;;;:9;:16;;;;;:21;;10224:1;;10204:16;:21;;10224:1;;10204:21;:::i;:::-;;;;-1:-1:-1;;10243:16:5;;;;:7;:16;;;;;;10236:23;;-1:-1:-1;;;;;;10236:23:5;;;10277:36;10251:7;;10243:16;-1:-1:-1;;;;;10277:36:5;;;;;10243:16;;10277:36;5924:218:0;;:::o;1556:305:5:-;1658:4;-1:-1:-1;;;;;;1695:40:5;;-1:-1:-1;;;1695:40:5;;:105;;-1:-1:-1;;;;;;;1752:48:5;;-1:-1:-1;;;1752:48:5;1695:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:4;;;1817:36:5;854:157:4;3789:505:0;3878:22;3886:4;3892:7;3878;:22::i;:::-;3873:414;;4066:41;4094:7;-1:-1:-1;;;;;4066:41:0;4104:2;4066:19;:41::i;:::-;4180:38;4208:4;4215:2;4180:19;:38::i;:::-;3971:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3971:270:0;;;;;;;;;;-1:-1:-1;;;3917:358:0;;;;;;;:::i;12657:799:5:-;12812:4;-1:-1:-1;;;;;12833:13:5;;1505:19:2;:23;12829:620:5;;12869:72;;-1:-1:-1;;;12869:72:5;;-1:-1:-1;;;;;12869:36:5;;;;;:72;;736:10:3;;12920:4:5;;12926:7;;12935:5;;12869:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12869:72:5;;;;;;;;-1:-1:-1;;12869:72:5;;;;;;;;;;;;:::i;:::-;;;12865:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13111:13:5;;13107:272;;13154:60;;-1:-1:-1;;;13154:60:5;;;;;;;:::i;13107:272::-;13329:6;13323:13;13314:6;13310:2;13306:15;13299:38;12865:529;-1:-1:-1;;;;;;12992:51:5;-1:-1:-1;;;12992:51:5;;-1:-1:-1;12985:58:5;;12829:620;-1:-1:-1;13433:4:5;12657:799;;;;;;:::o;1643:451:14:-;1718:13;1744:19;1776:10;1780:6;1776:1;:10;:::i;:::-;:14;;1789:1;1776:14;:::i;:::-;1766:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1766:25:14;;1744:47;;-1:-1:-1;;;1802:6:14;1809:1;1802:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1802:15:14;;;;;;;;;-1:-1:-1;;;1828:6:14;1835:1;1828:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1828:15:14;;;;;;;;-1:-1:-1;1859:9:14;1871:10;1875:6;1871:1;:10;:::i;:::-;:14;;1884:1;1871:14;:::i;:::-;1859:26;;1854:135;1891:1;1887;:5;1854:135;;;-1:-1:-1;;;1939:5:14;1947:3;1939:11;1926:25;;;;;;;:::i;:::-;;;;1914:6;1921:1;1914:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;1914:37:14;;;;;;;;-1:-1:-1;1976:1:14;1966:11;;;;;1894:3;;;:::i;:::-;;;1854:135;;;-1:-1:-1;2007:10:14;;1999:55;;;;-1:-1:-1;;;1999:55:14;;11842:2:15;1999:55:14;;;11824:21:15;;;11861:18;;;11854:30;11920:34;11900:18;;;11893:62;11972:18;;1999:55:14;11640:356:15;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:15;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:15;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:15;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:15;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:15;603:723;-1:-1:-1;;;;;;;603:723:15:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;2712:18;2704:6;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:15;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:422::-;3049:6;3057;3110:2;3098:9;3089:7;3085:23;3081:32;3078:52;;;3126:1;3123;3116:12;3078:52;3149:29;3168:9;3149:29;:::i;:::-;3139:39;;3229:2;3218:9;3214:18;3201:32;3256:18;3248:6;3245:30;3242:50;;;3288:1;3285;3278:12;3242:50;3311:61;3364:7;3355:6;3344:9;3340:22;3311:61;:::i;:::-;3301:71;;;2956:422;;;;;:::o;3383:254::-;3448:6;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;:::-;3538:39;;3596:35;3627:2;3616:9;3612:18;3596:35;:::i;3642:254::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;3886:2;3871:18;;;;3858:32;;-1:-1:-1;;;3642:254:15:o;3901:348::-;3985:6;4038:2;4026:9;4017:7;4013:23;4009:32;4006:52;;;4054:1;4051;4044:12;4006:52;4094:9;4081:23;4127:18;4119:6;4116:30;4113:50;;;4159:1;4156;4149:12;4113:50;4182:61;4235:7;4226:6;4215:9;4211:22;4182:61;:::i;4254:180::-;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4402:26;4418:9;4402:26;:::i;4439:180::-;4498:6;4551:2;4539:9;4530:7;4526:23;4522:32;4519:52;;;4567:1;4564;4557:12;4519:52;-1:-1:-1;4590:23:15;;4439:180;-1:-1:-1;4439:180:15:o;4624:254::-;4692:6;4700;4753:2;4741:9;4732:7;4728:23;4724:32;4721:52;;;4769:1;4766;4759:12;4721:52;4805:9;4792:23;4782:33;;4834:38;4868:2;4857:9;4853:18;4834:38;:::i;4883:245::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5049:9;5036:23;5068:30;5092:5;5068:30;:::i;5133:249::-;5202:6;5255:2;5243:9;5234:7;5230:23;5226:32;5223:52;;;5271:1;5268;5261:12;5223:52;5303:9;5297:16;5322:30;5346:5;5322:30;:::i;5387:450::-;5456:6;5509:2;5497:9;5488:7;5484:23;5480:32;5477:52;;;5525:1;5522;5515:12;5477:52;5565:9;5552:23;5598:18;5590:6;5587:30;5584:50;;;5630:1;5627;5620:12;5584:50;5653:22;;5706:4;5698:13;;5694:27;-1:-1:-1;5684:55:15;;5735:1;5732;5725:12;5684:55;5758:73;5823:7;5818:2;5805:16;5800:2;5796;5792:11;5758:73;:::i;6027:257::-;6068:3;6106:5;6100:12;6133:6;6128:3;6121:19;6149:63;6205:6;6198:4;6193:3;6189:14;6182:4;6175:5;6171:16;6149:63;:::i;:::-;6266:2;6245:15;-1:-1:-1;;6241:29:15;6232:39;;;;6273:4;6228:50;;6027:257;-1:-1:-1;;6027:257:15:o;6289:1199::-;6513:3;6551:6;6545:13;6577:4;6590:51;6634:6;6629:3;6624:2;6616:6;6612:15;6590:51;:::i;:::-;6704:13;;6663:16;;;;6726:55;6704:13;6663:16;6748:15;;;6726:55;:::i;:::-;6870:13;;6803:20;;;6843:1;;6908:36;6870:13;6908:36;:::i;:::-;6963:1;6980:18;;;7007:110;;;;7131:1;7126:337;;;;6973:490;;7007:110;-1:-1:-1;;7042:24:15;;7028:39;;7087:20;;;;-1:-1:-1;7007:110:15;;7126:337;7157:6;7154:1;7147:17;7205:2;7202:1;7192:16;7230:1;7244:169;7258:8;7255:1;7252:15;7244:169;;;7340:14;;7325:13;;;7318:37;7383:16;;;;7275:10;;7244:169;;;7248:3;;7444:8;7437:5;7433:20;7426:27;;6973:490;-1:-1:-1;7479:3:15;;6289:1199;-1:-1:-1;;;;;;;;;;6289:1199:15:o;7885:786::-;8296:25;8291:3;8284:38;8266:3;8351:6;8345:13;8367:62;8422:6;8417:2;8412:3;8408:12;8401:4;8393:6;8389:17;8367:62;:::i;:::-;-1:-1:-1;;;8488:2:15;8448:16;;;8480:11;;;8473:40;8538:13;;8560:63;8538:13;8609:2;8601:11;;8594:4;8582:17;;8560:63;:::i;:::-;8643:17;8662:2;8639:26;;7885:786;-1:-1:-1;;;;7885:786:15:o;8884:488::-;-1:-1:-1;;;;;9153:15:15;;;9135:34;;9205:15;;9200:2;9185:18;;9178:43;9252:2;9237:18;;9230:34;;;9300:3;9295:2;9280:18;;9273:31;;;9078:4;;9321:45;;9346:19;;9338:6;9321:45;:::i;:::-;9313:53;8884:488;-1:-1:-1;;;;;;8884:488:15:o;9377:729::-;-1:-1:-1;;;;;9625:32:15;;9607:51;;9595:2;9677;9695:18;;;9688:30;;;9767:13;;9580:18;;;9789:22;;;9547:4;;9868:15;;;;9677:2;9842;9827:18;;;9547:4;9911:169;9925:6;9922:1;9919:13;9911:169;;;9986:13;;9974:26;;10055:15;;;;10020:12;;;;9947:1;9940:9;9911:169;;;-1:-1:-1;10097:3:15;;9377:729;-1:-1:-1;;;;;;;9377:729:15:o;10485:219::-;10634:2;10623:9;10616:21;10597:4;10654:44;10694:2;10683:9;10679:18;10671:6;10654:44;:::i;10709:926::-;10818:4;10847:2;10876;10865:9;10858:21;10899:1;10932:6;10926:13;10962:36;10988:9;10962:36;:::i;:::-;11034:6;11029:2;11018:9;11014:18;11007:34;11060:2;11081:1;11113:2;11102:9;11098:18;11130:1;11125:121;;;;11260:1;11255:354;;;;11091:518;;11125:121;-1:-1:-1;;11173:24:15;;11153:18;;;11146:52;11233:2;11218:18;;;-1:-1:-1;11125:121:15;;11255:354;11286:6;11283:1;11276:17;11334:2;11331:1;11321:16;11359:1;11373:180;11387:6;11384:1;11381:13;11373:180;;;11480:14;;11456:17;;;11452:26;;11445:50;11523:16;;;;11402:10;;11373:180;;;11577:17;;11573:26;;;-1:-1:-1;;11091:518:15;-1:-1:-1;11626:3:15;;10709:926;-1:-1:-1;;;;;;;;10709:926:15:o;12001:414::-;12203:2;12185:21;;;12242:2;12222:18;;;12215:30;12281:34;12276:2;12261:18;;12254:62;-1:-1:-1;;;12347:2:15;12332:18;;12325:48;12405:3;12390:19;;12001:414::o;17203:356::-;17405:2;17387:21;;;17424:18;;;17417:30;17483:34;17478:2;17463:18;;17456:62;17550:2;17535:18;;17203:356::o;18369:413::-;18571:2;18553:21;;;18610:2;18590:18;;;18583:30;18649:34;18644:2;18629:18;;18622:62;-1:-1:-1;;;18715:2:15;18700:18;;18693:47;18772:3;18757:19;;18369:413::o;19385:275::-;19456:2;19450:9;19521:2;19502:13;;-1:-1:-1;;19498:27:15;19486:40;;19556:18;19541:34;;19577:22;;;19538:62;19535:88;;;19603:18;;:::i;:::-;19639:2;19632:22;19385:275;;-1:-1:-1;19385:275:15:o;19665:128::-;19705:3;19736:1;19732:6;19729:1;19726:13;19723:39;;;19742:18;;:::i;:::-;-1:-1:-1;19778:9:15;;19665:128::o;19798:120::-;19838:1;19864;19854:35;;19869:18;;:::i;:::-;-1:-1:-1;19903:9:15;;19798:120::o;19923:168::-;19963:7;20029:1;20025;20021:6;20017:14;20014:1;20011:21;20006:1;19999:9;19992:17;19988:45;19985:71;;;20036:18;;:::i;:::-;-1:-1:-1;20076:9:15;;19923:168::o;20096:125::-;20136:4;20164:1;20161;20158:8;20155:34;;;20169:18;;:::i;:::-;-1:-1:-1;20206:9:15;;20096:125::o;20226:258::-;20298:1;20308:113;20322:6;20319:1;20316:13;20308:113;;;20398:11;;;20392:18;20379:11;;;20372:39;20344:2;20337:10;20308:113;;;20439:6;20436:1;20433:13;20430:48;;;-1:-1:-1;;20474:1:15;20456:16;;20449:27;20226:258::o;20489:136::-;20528:3;20556:5;20546:39;;20565:18;;:::i;:::-;-1:-1:-1;;;20601:18:15;;20489:136::o;20630:380::-;20709:1;20705:12;;;;20752;;;20773:61;;20827:4;20819:6;20815:17;20805:27;;20773:61;20880:2;20872:6;20869:14;20849:18;20846:38;20843:161;;;20926:10;20921:3;20917:20;20914:1;20907:31;20961:4;20958:1;20951:15;20989:4;20986:1;20979:15;20843:161;;20630:380;;;:::o;21015:135::-;21054:3;-1:-1:-1;;21075:17:15;;21072:43;;;21095:18;;:::i;:::-;-1:-1:-1;21142:1:15;21131:13;;21015:135::o;21155:112::-;21187:1;21213;21203:35;;21218:18;;:::i;:::-;-1:-1:-1;21252:9:15;;21155:112::o;21272:127::-;21333:10;21328:3;21324:20;21321:1;21314:31;21364:4;21361:1;21354:15;21388:4;21385:1;21378:15;21404:127;21465:10;21460:3;21456:20;21453:1;21446:31;21496:4;21493:1;21486:15;21520:4;21517:1;21510:15;21536:127;21597:10;21592:3;21588:20;21585:1;21578:31;21628:4;21625:1;21618:15;21652:4;21649:1;21642:15;21668:127;21729:10;21724:3;21720:20;21717:1;21710:31;21760:4;21757:1;21750:15;21784:4;21781:1;21774:15;21800:131;-1:-1:-1;;;;;;21874:32:15;;21864:43;;21854:71;;21921:1;21918;21911:12
Swarm Source
ipfs://1904c77c6a0071826cb5bf90378a632b012321af98d91af48f5edeb7e60948b6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.