Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,250 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21197184 | 2 days ago | IN | 0 ETH | 0.00066992 | ||||
Set Approval For... | 21072074 | 19 days ago | IN | 0 ETH | 0.00032231 | ||||
Set Approval For... | 21031886 | 25 days ago | IN | 0 ETH | 0.0003803 | ||||
Set Approval For... | 20999063 | 30 days ago | IN | 0 ETH | 0.00043199 | ||||
Set Approval For... | 20947122 | 37 days ago | IN | 0 ETH | 0.00040787 | ||||
Set Approval For... | 20927977 | 40 days ago | IN | 0 ETH | 0.00087955 | ||||
Safe Transfer Fr... | 20850126 | 50 days ago | IN | 0 ETH | 0.00035219 | ||||
Safe Transfer Fr... | 20850124 | 50 days ago | IN | 0 ETH | 0.00039814 | ||||
Safe Transfer Fr... | 20850123 | 50 days ago | IN | 0 ETH | 0.00039138 | ||||
Safe Transfer Fr... | 20850122 | 50 days ago | IN | 0 ETH | 0.00039293 | ||||
Safe Transfer Fr... | 20850120 | 50 days ago | IN | 0 ETH | 0.00035244 | ||||
Safe Transfer Fr... | 20850119 | 50 days ago | IN | 0 ETH | 0.00037862 | ||||
Safe Transfer Fr... | 20850118 | 50 days ago | IN | 0 ETH | 0.0003409 | ||||
Safe Transfer Fr... | 20850116 | 50 days ago | IN | 0 ETH | 0.00036935 | ||||
Safe Transfer Fr... | 20850114 | 50 days ago | IN | 0 ETH | 0.00036357 | ||||
Safe Transfer Fr... | 20850113 | 50 days ago | IN | 0 ETH | 0.00035279 | ||||
Safe Transfer Fr... | 20850112 | 50 days ago | IN | 0 ETH | 0.00036082 | ||||
Safe Transfer Fr... | 20850032 | 50 days ago | IN | 0 ETH | 0.00040455 | ||||
Safe Transfer Fr... | 20850025 | 50 days ago | IN | 0 ETH | 0.00040877 | ||||
Set Approval For... | 20752389 | 64 days ago | IN | 0 ETH | 0.00007234 | ||||
Set Approval For... | 20729471 | 67 days ago | IN | 0 ETH | 0.00017503 | ||||
Set Approval For... | 20679959 | 74 days ago | IN | 0 ETH | 0.00019833 | ||||
Set Approval For... | 20677218 | 75 days ago | IN | 0 ETH | 0.00005968 | ||||
Set Approval For... | 20666972 | 76 days ago | IN | 0 ETH | 0.00005179 | ||||
Set Approval For... | 20666409 | 76 days ago | IN | 0 ETH | 0.00007725 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PortalDucks
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract PortalDucks is ERC721, Ownable, ERC721Burnable { event SendThroughPortal(address from, uint tokenId, uint256[3] collectionIds); using Counters for Counters.Counter; Counters.Counter private tokenIds; uint256 private _maxSupply = 3001; string public _provenanceHash; string public _baseURL; // Contracts variables // OG IERC721 private og; IERC721 private hell; IERC721 private secondGen; // Burner address address private _burnerAddress = 0x000000000000000000000000000000000000dEaD; // portal duck id => [og id, hell id, second id] mapping(uint256 => uint256[3]) private _portalToCollectionDucks; mapping(uint256 => bool) private _used2GenIds; bool private _isPortalActive = false; constructor(address ogAddress, address hellAddress, address secondGenAddress) ERC721("Nonconformist Upside Ducks", "NUD") { og = IERC721(ogAddress); hell = IERC721(hellAddress); secondGen = IERC721(secondGenAddress); } function sendThroughPortal(uint256 ogId, uint256 hellId, uint256 secondId) public { require(_isPortalActive, "Portal is not active."); require(tokenIds.current() < _maxSupply, "Can not mint more than max supply."); require(og.ownerOf(ogId) == msg.sender, "You must own the requested OG token."); require(hell.ownerOf(hellId) == msg.sender, "You must own the requested Hell token."); require(secondGen.ownerOf(secondId) == msg.sender, "You must own the requested 2Gen token."); // Check that the 2 gen duck wasn't used require(!_used2GenIds[secondId], "2Gen Duck was already used"); // Burn Tokens og.safeTransferFrom(msg.sender, _burnerAddress, ogId); hell.safeTransferFrom(msg.sender, _burnerAddress, hellId); // Mark the 2 Gen as used _used2GenIds[secondId] = true; // Mint Duck tokenIds.increment(); _safeMint(msg.sender, tokenIds.current()); _portalToCollectionDucks[tokenIds.current()] = [ogId, hellId, secondId]; emit SendThroughPortal(msg.sender, tokenIds.current(), [ogId, hellId, secondId]); } function mint(address to) public onlyOwner { tokenIds.increment(); _safeMint(to, tokenIds.current()); } function flipPortalState() public onlyOwner { _isPortalActive = !_isPortalActive; } function setMaxSupply(uint256 newMaxSupply) public onlyOwner { _maxSupply = newMaxSupply; } function setBurnerAddress(address newBurnerAddress) public onlyOwner { _burnerAddress = newBurnerAddress; } function setProvenanceHash(string memory newProvenanceHash) public onlyOwner { _provenanceHash = newProvenanceHash; } function setBaseURL(string memory newBaseURI) public onlyOwner { _baseURL = newBaseURI; } function _baseURI() internal view override returns (string memory) { return _baseURL; } function totalSupply() public view returns (uint256) { return tokenIds.current(); } function burnerAddress() public view returns (address) { return _burnerAddress; } function maxSupply() public view returns (uint256) { return _maxSupply; } function portalToCollectionDucks(uint256 tokenId) public view returns (uint256[3] memory) { return _portalToCollectionDucks[tokenId]; } function used2GenIds(uint256 secondGenTokenId) public view returns (bool) { return _used2GenIds[secondGenTokenId]; } function isPortalActive() public view returns (bool) { return _isPortalActive; } function setUsed2Gen(uint256[] memory secondGenTokenIds) onlyOwner public { for(uint256 i = 0; i<secondGenTokenIds.length; i++) { _used2GenIds[secondGenTokenIds[i]] = true; } } function removeUsed2Gen(uint256[] memory secondGenTokenIds) onlyOwner public { for(uint256 i = 0; i<secondGenTokenIds.length; i++) { _used2GenIds[secondGenTokenIds[i]] = false; } } }
// 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 "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/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 overriden 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/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/ERC721Burnable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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 (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 `IERC721.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 (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 (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/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); } }
// 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 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"ogAddress","type":"address"},{"internalType":"address","name":"hellAddress","type":"address"},{"internalType":"address","name":"secondGenAddress","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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256[3]","name":"collectionIds","type":"uint256[3]"}],"name":"SendThroughPortal","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"},{"inputs":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPortalState","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":"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":"isPortalActive","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":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"portalToCollectionDucks","outputs":[{"internalType":"uint256[3]","name":"","type":"uint256[3]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"secondGenTokenIds","type":"uint256[]"}],"name":"removeUsed2Gen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"uint256","name":"ogId","type":"uint256"},{"internalType":"uint256","name":"hellId","type":"uint256"},{"internalType":"uint256","name":"secondId","type":"uint256"}],"name":"sendThroughPortal","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":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBurnerAddress","type":"address"}],"name":"setBurnerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"secondGenTokenIds","type":"uint256[]"}],"name":"setUsed2Gen","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"},{"inputs":[{"internalType":"uint256","name":"secondGenTokenId","type":"uint256"}],"name":"used2GenIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052610bb960085561dead600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601160006101000a81548160ff0219169083151502179055503480156200007557600080fd5b5060405162004bb338038062004bb383398181016040528101906200009b9190620003bc565b6040518060400160405280601a81526020017f4e6f6e636f6e666f726d69737420557073696465204475636b730000000000008152506040518060400160405280600381526020017f4e5544000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200011f929190620002f5565b50806001908051906020019062000138929190620002f5565b5050506200015b6200014f6200022760201b60201c565b6200022f60201b60201c565b82600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620004d0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000303906200044c565b90600052602060002090601f01602090048101928262000327576000855562000373565b82601f106200034257805160ff191683800117855562000373565b8280016001018555821562000373579182015b828111156200037257825182559160200191906001019062000355565b5b50905062000382919062000386565b5090565b5b80821115620003a157600081600090555060010162000387565b5090565b600081519050620003b681620004b6565b92915050565b600080600060608486031215620003d857620003d7620004b1565b5b6000620003e886828701620003a5565b9350506020620003fb86828701620003a5565b92505060406200040e86828701620003a5565b9150509250925092565b600062000425826200042c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200046557607f821691505b602082108114156200047c576200047b62000482565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620004c18162000418565b8114620004cd57600080fd5b50565b6146d380620004e06000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063bcbeead9116100ad578063e6293e231161007c578063e6293e23146105ab578063e985e9c5146105c9578063f2fde38b146105f9578063f3e01d7114610615578063f9e0edae1461063357610206565b8063bcbeead914610511578063c87b56dd1461052d578063c9d253251461055d578063d5abeb011461058d57610206565b80639df806d6116100e95780639df806d6146104b3578063a22cb465146104cf578063a6cc05b2146104eb578063b88d4fde146104f557610206565b806370a082311461043d578063715018a61461046d5780638da5cb5b1461047757806395d89b411461049557610206565b80632fdd8fcd1161019d57806351a9b6ed1161016c57806351a9b6ed1461039b578063534308cc146103b75780636352211e146103d55780636a627842146104055780636f8b44b01461042157610206565b80632fdd8fcd1461031757806342842e0e1461034757806342966c681461036357806349f2553a1461037f57610206565b806310969523116101d957806310969523146102a557806318160ddd146102c1578063221462d2146102df57806323b872dd146102fb57610206565b806301ffc9a71461020b57806306fdde031461023b578063081812fc14610259578063095ea7b314610289575b600080fd5b610225600480360381019061022091906131a4565b610651565b604051610232919061384e565b60405180910390f35b610243610733565b6040516102509190613869565b60405180910390f35b610273600480360381019061026e9190613247565b6107c5565b604051610280919061375e565b60405180910390f35b6102a3600480360381019061029e919061311b565b61084a565b005b6102bf60048036038101906102ba91906131fe565b610962565b005b6102c96109f8565b6040516102d69190613b6b565b60405180910390f35b6102f960048036038101906102f49190613274565b610a09565b005b61031560048036038101906103109190613005565b6110a6565b005b610331600480360381019061032c9190613247565b611106565b60405161033e919061384e565b60405180910390f35b610361600480360381019061035c9190613005565b611130565b005b61037d60048036038101906103789190613247565b611150565b005b610399600480360381019061039491906131fe565b6111ac565b005b6103b560048036038101906103b0919061315b565b611242565b005b6103bf611327565b6040516103cc9190613869565b60405180910390f35b6103ef60048036038101906103ea9190613247565b6113b5565b6040516103fc919061375e565b60405180910390f35b61041f600480360381019061041a9190612f6b565b611467565b005b61043b60048036038101906104369190613247565b611503565b005b61045760048036038101906104529190612f6b565b611589565b6040516104649190613b6b565b60405180910390f35b610475611641565b005b61047f6116c9565b60405161048c919061375e565b60405180910390f35b61049d6116f3565b6040516104aa9190613869565b60405180910390f35b6104cd60048036038101906104c89190612f6b565b611785565b005b6104e960048036038101906104e491906130db565b611845565b005b6104f361185b565b005b61050f600480360381019061050a9190613058565b611903565b005b61052b6004803603810190610526919061315b565b611965565b005b61054760048036038101906105429190613247565b611a4a565b6040516105549190613869565b60405180910390f35b61057760048036038101906105729190613247565b611af1565b6040516105849190613833565b60405180910390f35b610595611b4f565b6040516105a29190613b6b565b60405180910390f35b6105b3611b59565b6040516105c0919061375e565b60405180910390f35b6105e360048036038101906105de9190612fc5565b611b83565b6040516105f0919061384e565b60405180910390f35b610613600480360381019061060e9190612f6b565b611c17565b005b61061d611d0f565b60405161062a919061384e565b60405180910390f35b61063b611d26565b6040516106489190613869565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072c575061072b82611db4565b5b9050919050565b60606000805461074290613e1a565b80601f016020809104026020016040519081016040528092919081815260200182805461076e90613e1a565b80156107bb5780601f10610790576101008083540402835291602001916107bb565b820191906000526020600020905b81548152906001019060200180831161079e57829003601f168201915b5050505050905090565b60006107d082611e1e565b61080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690613a4b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610855826113b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90613aab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e5611e8a565b73ffffffffffffffffffffffffffffffffffffffff16148061091457506109138161090e611e8a565b611b83565b5b610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906139cb565b60405180910390fd5b61095d8383611e92565b505050565b61096a611e8a565b73ffffffffffffffffffffffffffffffffffffffff166109886116c9565b73ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613a6b565b60405180910390fd5b80600990805190602001906109f4929190612c6a565b5050565b6000610a046007611f4b565b905090565b601160009054906101000a900460ff16610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90613aeb565b60405180910390fd5b600854610a656007611f4b565b10610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c9061398b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610b179190613b6b565b60206040518083038186803b158015610b2f57600080fd5b505afa158015610b43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b679190612f98565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb49061392b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610c2f9190613b6b565b60206040518083038186803b158015610c4757600080fd5b505afa158015610c5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7f9190612f98565b73ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90613b2b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610d479190613b6b565b60206040518083038186803b158015610d5f57600080fd5b505afa158015610d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d979190612f98565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613b0b565b60405180910390fd5b6010600082815260200190815260200160002060009054906101000a900460ff1615610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e459061390b565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e33600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b8152600401610ecf93929190613779565b600060405180830381600087803b158015610ee957600080fd5b505af1158015610efd573d6000803e3d6000fd5b50505050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e33600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401610f8293929190613779565b600060405180830381600087803b158015610f9c57600080fd5b505af1158015610fb0573d6000803e3d6000fd5b5050505060016010600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610fea6007611f59565b610ffd33610ff86007611f4b565b611f6f565b604051806060016040528084815260200183815260200182815250600f60006110266007611f4b565b8152602001908152602001600020906003611042929190612cf0565b507f521e73f5d0a868ecd26836028d73dc8d12b0a9adc75790e0c8a9a70f608ed8753361106f6007611f4b565b604051806060016040528087815260200186815260200185815250604051611099939291906137fc565b60405180910390a1505050565b6110b76110b1611e8a565b82611f8d565b6110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613acb565b60405180910390fd5b61110183838361206b565b505050565b60006010600083815260200190815260200160002060009054906101000a900460ff169050919050565b61114b83838360405180602001604052806000815250611903565b505050565b61116161115b611e8a565b82611f8d565b6111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613b4b565b60405180910390fd5b6111a9816122d2565b50565b6111b4611e8a565b73ffffffffffffffffffffffffffffffffffffffff166111d26116c9565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613a6b565b60405180910390fd5b80600a908051906020019061123e929190612c6a565b5050565b61124a611e8a565b73ffffffffffffffffffffffffffffffffffffffff166112686116c9565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590613a6b565b60405180910390fd5b60005b8151811015611323576001601060008484815181106112e3576112e2613f84565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061131b90613e7d565b9150506112c1565b5050565b6009805461133490613e1a565b80601f016020809104026020016040519081016040528092919081815260200182805461136090613e1a565b80156113ad5780601f10611382576101008083540402835291602001916113ad565b820191906000526020600020905b81548152906001019060200180831161139057829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613a0b565b60405180910390fd5b80915050919050565b61146f611e8a565b73ffffffffffffffffffffffffffffffffffffffff1661148d6116c9565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613a6b565b60405180910390fd5b6114ed6007611f59565b611500816114fb6007611f4b565b611f6f565b50565b61150b611e8a565b73ffffffffffffffffffffffffffffffffffffffff166115296116c9565b73ffffffffffffffffffffffffffffffffffffffff161461157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690613a6b565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906139eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611649611e8a565b73ffffffffffffffffffffffffffffffffffffffff166116676116c9565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613a6b565b60405180910390fd5b6116c760006123ef565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170290613e1a565b80601f016020809104026020016040519081016040528092919081815260200182805461172e90613e1a565b801561177b5780601f106117505761010080835404028352916020019161177b565b820191906000526020600020905b81548152906001019060200180831161175e57829003601f168201915b5050505050905090565b61178d611e8a565b73ffffffffffffffffffffffffffffffffffffffff166117ab6116c9565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890613a6b565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611857611850611e8a565b83836124b5565b5050565b611863611e8a565b73ffffffffffffffffffffffffffffffffffffffff166118816116c9565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613a6b565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b61191461190e611e8a565b83611f8d565b611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613acb565b60405180910390fd5b61195f84848484612622565b50505050565b61196d611e8a565b73ffffffffffffffffffffffffffffffffffffffff1661198b6116c9565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613a6b565b60405180910390fd5b60005b8151811015611a4657600060106000848481518110611a0657611a05613f84565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611a3e90613e7d565b9150506119e4565b5050565b6060611a5582611e1e565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90613a8b565b60405180910390fd5b6000611a9e61267e565b90506000815111611abe5760405180602001604052806000815250611ae9565b80611ac884612710565b604051602001611ad992919061373a565b6040516020818303038152906040525b915050919050565b611af9612d30565b600f6000838152602001908152602001600020600380602002604051908101604052809291908260038015611b43576020028201915b815481526020019060010190808311611b2f575b50505050509050919050565b6000600854905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c1f611e8a565b73ffffffffffffffffffffffffffffffffffffffff16611c3d6116c9565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613a6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906138ab565b60405180910390fd5b611d0c816123ef565b50565b6000601160009054906101000a900460ff16905090565b600a8054611d3390613e1a565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5f90613e1a565b8015611dac5780601f10611d8157610100808354040283529160200191611dac565b820191906000526020600020905b815481529060010190602001808311611d8f57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f05836113b5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611f89828260405180602001604052806000815250612871565b5050565b6000611f9882611e1e565b611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906139ab565b60405180910390fd5b6000611fe2836113b5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205157508373ffffffffffffffffffffffffffffffffffffffff16612039846107c5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206257506120618185611b83565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661208b826113b5565b73ffffffffffffffffffffffffffffffffffffffff16146120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d8906138cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612151576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121489061394b565b60405180910390fd5b61215c8383836128cc565b612167600082611e92565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b79190613d30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461220e9190613ca9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122cd8383836128d1565b505050565b60006122dd826113b5565b90506122eb816000846128cc565b6122f6600083611e92565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123469190613d30565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123eb816000846128d1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b9061396b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612615919061384e565b60405180910390a3505050565b61262d84848461206b565b612639848484846128d6565b612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f9061388b565b60405180910390fd5b50505050565b6060600a805461268d90613e1a565b80601f01602080910402602001604051908101604052809291908181526020018280546126b990613e1a565b80156127065780601f106126db57610100808354040283529160200191612706565b820191906000526020600020905b8154815290600101906020018083116126e957829003601f168201915b5050505050905090565b60606000821415612758576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061286c565b600082905060005b6000821461278a57808061277390613e7d565b915050600a826127839190613cff565b9150612760565b60008167ffffffffffffffff8111156127a6576127a5613fb3565b5b6040519080825280601f01601f1916602001820160405280156127d85781602001600182028036833780820191505090505b5090505b60008514612865576001826127f19190613d30565b9150600a856128009190613ec6565b603061280c9190613ca9565b60f81b81838151811061282257612821613f84565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561285e9190613cff565b94506127dc565b8093505050505b919050565b61287b8383612a6d565b61288860008484846128d6565b6128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be9061388b565b60405180910390fd5b505050565b505050565b505050565b60006128f78473ffffffffffffffffffffffffffffffffffffffff16612c47565b15612a60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612920611e8a565b8786866040518563ffffffff1660e01b815260040161294294939291906137b0565b602060405180830381600087803b15801561295c57600080fd5b505af192505050801561298d57506040513d601f19601f8201168201806040525081019061298a91906131d1565b60015b612a10573d80600081146129bd576040519150601f19603f3d011682016040523d82523d6000602084013e6129c2565b606091505b50600081511415612a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ff9061388b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a65565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad490613a2b565b60405180910390fd5b612ae681611e1e565b15612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d906138eb565b60405180910390fd5b612b32600083836128cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b829190613ca9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c43600083836128d1565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612c7690613e1a565b90600052602060002090601f016020900481019282612c985760008555612cdf565b82601f10612cb157805160ff1916838001178555612cdf565b82800160010185558215612cdf579182015b82811115612cde578251825591602001919060010190612cc3565b5b509050612cec9190612d52565b5090565b8260038101928215612d1f579160200282015b82811115612d1e578251825591602001919060010190612d03565b5b509050612d2c9190612d52565b5090565b6040518060600160405280600390602082028036833780820191505090505090565b5b80821115612d6b576000816000905550600101612d53565b5090565b6000612d82612d7d84613bab565b613b86565b90508083825260208201905082856020860282011115612da557612da4613fe7565b5b60005b85811015612dd55781612dbb8882612f56565b845260208401935060208301925050600181019050612da8565b5050509392505050565b6000612df2612ded84613bd7565b613b86565b905082815260208101848484011115612e0e57612e0d613fec565b5b612e19848285613dd8565b509392505050565b6000612e34612e2f84613c08565b613b86565b905082815260208101848484011115612e5057612e4f613fec565b5b612e5b848285613dd8565b509392505050565b600081359050612e7281614641565b92915050565b600081519050612e8781614641565b92915050565b600082601f830112612ea257612ea1613fe2565b5b8135612eb2848260208601612d6f565b91505092915050565b600081359050612eca81614658565b92915050565b600081359050612edf8161466f565b92915050565b600081519050612ef48161466f565b92915050565b600082601f830112612f0f57612f0e613fe2565b5b8135612f1f848260208601612ddf565b91505092915050565b600082601f830112612f3d57612f3c613fe2565b5b8135612f4d848260208601612e21565b91505092915050565b600081359050612f6581614686565b92915050565b600060208284031215612f8157612f80613ff6565b5b6000612f8f84828501612e63565b91505092915050565b600060208284031215612fae57612fad613ff6565b5b6000612fbc84828501612e78565b91505092915050565b60008060408385031215612fdc57612fdb613ff6565b5b6000612fea85828601612e63565b9250506020612ffb85828601612e63565b9150509250929050565b60008060006060848603121561301e5761301d613ff6565b5b600061302c86828701612e63565b935050602061303d86828701612e63565b925050604061304e86828701612f56565b9150509250925092565b6000806000806080858703121561307257613071613ff6565b5b600061308087828801612e63565b945050602061309187828801612e63565b93505060406130a287828801612f56565b925050606085013567ffffffffffffffff8111156130c3576130c2613ff1565b5b6130cf87828801612efa565b91505092959194509250565b600080604083850312156130f2576130f1613ff6565b5b600061310085828601612e63565b925050602061311185828601612ebb565b9150509250929050565b6000806040838503121561313257613131613ff6565b5b600061314085828601612e63565b925050602061315185828601612f56565b9150509250929050565b60006020828403121561317157613170613ff6565b5b600082013567ffffffffffffffff81111561318f5761318e613ff1565b5b61319b84828501612e8d565b91505092915050565b6000602082840312156131ba576131b9613ff6565b5b60006131c884828501612ed0565b91505092915050565b6000602082840312156131e7576131e6613ff6565b5b60006131f584828501612ee5565b91505092915050565b60006020828403121561321457613213613ff6565b5b600082013567ffffffffffffffff81111561323257613231613ff1565b5b61323e84828501612f28565b91505092915050565b60006020828403121561325d5761325c613ff6565b5b600061326b84828501612f56565b91505092915050565b60008060006060848603121561328d5761328c613ff6565b5b600061329b86828701612f56565b93505060206132ac86828701612f56565b92505060406132bd86828701612f56565b9150509250925092565b60006132d3838361371c565b60208301905092915050565b6132e881613d64565b82525050565b6132f781613c43565b6133018184613c71565b925061330c82613c39565b8060005b8381101561333d57815161332487826132c7565b965061332f83613c64565b925050600181019050613310565b505050505050565b61334e81613d76565b82525050565b600061335f82613c4e565b6133698185613c7c565b9350613379818560208601613de7565b61338281613ffb565b840191505092915050565b600061339882613c59565b6133a28185613c8d565b93506133b2818560208601613de7565b6133bb81613ffb565b840191505092915050565b60006133d182613c59565b6133db8185613c9e565b93506133eb818560208601613de7565b80840191505092915050565b6000613404603283613c8d565b915061340f8261400c565b604082019050919050565b6000613427602683613c8d565b91506134328261405b565b604082019050919050565b600061344a602583613c8d565b9150613455826140aa565b604082019050919050565b600061346d601c83613c8d565b9150613478826140f9565b602082019050919050565b6000613490601a83613c8d565b915061349b82614122565b602082019050919050565b60006134b3602483613c8d565b91506134be8261414b565b604082019050919050565b60006134d6602483613c8d565b91506134e18261419a565b604082019050919050565b60006134f9601983613c8d565b9150613504826141e9565b602082019050919050565b600061351c602283613c8d565b915061352782614212565b604082019050919050565b600061353f602c83613c8d565b915061354a82614261565b604082019050919050565b6000613562603883613c8d565b915061356d826142b0565b604082019050919050565b6000613585602a83613c8d565b9150613590826142ff565b604082019050919050565b60006135a8602983613c8d565b91506135b38261434e565b604082019050919050565b60006135cb602083613c8d565b91506135d68261439d565b602082019050919050565b60006135ee602c83613c8d565b91506135f9826143c6565b604082019050919050565b6000613611602083613c8d565b915061361c82614415565b602082019050919050565b6000613634602f83613c8d565b915061363f8261443e565b604082019050919050565b6000613657602183613c8d565b91506136628261448d565b604082019050919050565b600061367a603183613c8d565b9150613685826144dc565b604082019050919050565b600061369d601583613c8d565b91506136a88261452b565b602082019050919050565b60006136c0602683613c8d565b91506136cb82614554565b604082019050919050565b60006136e3602683613c8d565b91506136ee826145a3565b604082019050919050565b6000613706603083613c8d565b9150613711826145f2565b604082019050919050565b61372581613dce565b82525050565b61373481613dce565b82525050565b600061374682856133c6565b915061375282846133c6565b91508190509392505050565b600060208201905061377360008301846132df565b92915050565b600060608201905061378e60008301866132df565b61379b60208301856132df565b6137a8604083018461372b565b949350505050565b60006080820190506137c560008301876132df565b6137d260208301866132df565b6137df604083018561372b565b81810360608301526137f18184613354565b905095945050505050565b600060a08201905061381160008301866132df565b61381e602083018561372b565b61382b60408301846132ee565b949350505050565b600060608201905061384860008301846132ee565b92915050565b60006020820190506138636000830184613345565b92915050565b60006020820190508181036000830152613883818461338d565b905092915050565b600060208201905081810360008301526138a4816133f7565b9050919050565b600060208201905081810360008301526138c48161341a565b9050919050565b600060208201905081810360008301526138e48161343d565b9050919050565b6000602082019050818103600083015261390481613460565b9050919050565b6000602082019050818103600083015261392481613483565b9050919050565b60006020820190508181036000830152613944816134a6565b9050919050565b60006020820190508181036000830152613964816134c9565b9050919050565b60006020820190508181036000830152613984816134ec565b9050919050565b600060208201905081810360008301526139a48161350f565b9050919050565b600060208201905081810360008301526139c481613532565b9050919050565b600060208201905081810360008301526139e481613555565b9050919050565b60006020820190508181036000830152613a0481613578565b9050919050565b60006020820190508181036000830152613a248161359b565b9050919050565b60006020820190508181036000830152613a44816135be565b9050919050565b60006020820190508181036000830152613a64816135e1565b9050919050565b60006020820190508181036000830152613a8481613604565b9050919050565b60006020820190508181036000830152613aa481613627565b9050919050565b60006020820190508181036000830152613ac48161364a565b9050919050565b60006020820190508181036000830152613ae48161366d565b9050919050565b60006020820190508181036000830152613b0481613690565b9050919050565b60006020820190508181036000830152613b24816136b3565b9050919050565b60006020820190508181036000830152613b44816136d6565b9050919050565b60006020820190508181036000830152613b64816136f9565b9050919050565b6000602082019050613b80600083018461372b565b92915050565b6000613b90613ba1565b9050613b9c8282613e4c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc657613bc5613fb3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bf257613bf1613fb3565b5b613bfb82613ffb565b9050602081019050919050565b600067ffffffffffffffff821115613c2357613c22613fb3565b5b613c2c82613ffb565b9050602081019050919050565b6000819050919050565b600060039050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cb482613dce565b9150613cbf83613dce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf457613cf3613ef7565b5b828201905092915050565b6000613d0a82613dce565b9150613d1583613dce565b925082613d2557613d24613f26565b5b828204905092915050565b6000613d3b82613dce565b9150613d4683613dce565b925082821015613d5957613d58613ef7565b5b828203905092915050565b6000613d6f82613dae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e05578082015181840152602081019050613dea565b83811115613e14576000848401525b50505050565b60006002820490506001821680613e3257607f821691505b60208210811415613e4657613e45613f55565b5b50919050565b613e5582613ffb565b810181811067ffffffffffffffff82111715613e7457613e73613fb3565b5b80604052505050565b6000613e8882613dce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ebb57613eba613ef7565b5b600182019050919050565b6000613ed182613dce565b9150613edc83613dce565b925082613eec57613eeb613f26565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f3247656e204475636b2077617320616c72656164792075736564000000000000600082015250565b7f596f75206d757374206f776e2074686520726571756573746564204f4720746f60008201527f6b656e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f506f7274616c206973206e6f74206163746976652e0000000000000000000000600082015250565b7f596f75206d757374206f776e2074686520726571756573746564203247656e2060008201527f746f6b656e2e0000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206f776e20746865207265717565737465642048656c6c2060008201527f746f6b656e2e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61464a81613d64565b811461465557600080fd5b50565b61466181613d76565b811461466c57600080fd5b50565b61467881613d82565b811461468357600080fd5b50565b61468f81613dce565b811461469a57600080fd5b5056fea2646970667358221220e5bb200fe49a375fc27732c9c304b4e837f4aa621051e4e341bd602abdda592f64736f6c634300080600330000000000000000000000000f4b28d46cab209bc5fa987a92a26a5680538e450000000000000000000000007b7dad77e4090160f9cb6ba57a5a774c12d4c28a000000000000000000000000488fb59d73669d5a1cdf0960214563756594c528
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063bcbeead9116100ad578063e6293e231161007c578063e6293e23146105ab578063e985e9c5146105c9578063f2fde38b146105f9578063f3e01d7114610615578063f9e0edae1461063357610206565b8063bcbeead914610511578063c87b56dd1461052d578063c9d253251461055d578063d5abeb011461058d57610206565b80639df806d6116100e95780639df806d6146104b3578063a22cb465146104cf578063a6cc05b2146104eb578063b88d4fde146104f557610206565b806370a082311461043d578063715018a61461046d5780638da5cb5b1461047757806395d89b411461049557610206565b80632fdd8fcd1161019d57806351a9b6ed1161016c57806351a9b6ed1461039b578063534308cc146103b75780636352211e146103d55780636a627842146104055780636f8b44b01461042157610206565b80632fdd8fcd1461031757806342842e0e1461034757806342966c681461036357806349f2553a1461037f57610206565b806310969523116101d957806310969523146102a557806318160ddd146102c1578063221462d2146102df57806323b872dd146102fb57610206565b806301ffc9a71461020b57806306fdde031461023b578063081812fc14610259578063095ea7b314610289575b600080fd5b610225600480360381019061022091906131a4565b610651565b604051610232919061384e565b60405180910390f35b610243610733565b6040516102509190613869565b60405180910390f35b610273600480360381019061026e9190613247565b6107c5565b604051610280919061375e565b60405180910390f35b6102a3600480360381019061029e919061311b565b61084a565b005b6102bf60048036038101906102ba91906131fe565b610962565b005b6102c96109f8565b6040516102d69190613b6b565b60405180910390f35b6102f960048036038101906102f49190613274565b610a09565b005b61031560048036038101906103109190613005565b6110a6565b005b610331600480360381019061032c9190613247565b611106565b60405161033e919061384e565b60405180910390f35b610361600480360381019061035c9190613005565b611130565b005b61037d60048036038101906103789190613247565b611150565b005b610399600480360381019061039491906131fe565b6111ac565b005b6103b560048036038101906103b0919061315b565b611242565b005b6103bf611327565b6040516103cc9190613869565b60405180910390f35b6103ef60048036038101906103ea9190613247565b6113b5565b6040516103fc919061375e565b60405180910390f35b61041f600480360381019061041a9190612f6b565b611467565b005b61043b60048036038101906104369190613247565b611503565b005b61045760048036038101906104529190612f6b565b611589565b6040516104649190613b6b565b60405180910390f35b610475611641565b005b61047f6116c9565b60405161048c919061375e565b60405180910390f35b61049d6116f3565b6040516104aa9190613869565b60405180910390f35b6104cd60048036038101906104c89190612f6b565b611785565b005b6104e960048036038101906104e491906130db565b611845565b005b6104f361185b565b005b61050f600480360381019061050a9190613058565b611903565b005b61052b6004803603810190610526919061315b565b611965565b005b61054760048036038101906105429190613247565b611a4a565b6040516105549190613869565b60405180910390f35b61057760048036038101906105729190613247565b611af1565b6040516105849190613833565b60405180910390f35b610595611b4f565b6040516105a29190613b6b565b60405180910390f35b6105b3611b59565b6040516105c0919061375e565b60405180910390f35b6105e360048036038101906105de9190612fc5565b611b83565b6040516105f0919061384e565b60405180910390f35b610613600480360381019061060e9190612f6b565b611c17565b005b61061d611d0f565b60405161062a919061384e565b60405180910390f35b61063b611d26565b6040516106489190613869565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072c575061072b82611db4565b5b9050919050565b60606000805461074290613e1a565b80601f016020809104026020016040519081016040528092919081815260200182805461076e90613e1a565b80156107bb5780601f10610790576101008083540402835291602001916107bb565b820191906000526020600020905b81548152906001019060200180831161079e57829003601f168201915b5050505050905090565b60006107d082611e1e565b61080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690613a4b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610855826113b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90613aab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e5611e8a565b73ffffffffffffffffffffffffffffffffffffffff16148061091457506109138161090e611e8a565b611b83565b5b610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906139cb565b60405180910390fd5b61095d8383611e92565b505050565b61096a611e8a565b73ffffffffffffffffffffffffffffffffffffffff166109886116c9565b73ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613a6b565b60405180910390fd5b80600990805190602001906109f4929190612c6a565b5050565b6000610a046007611f4b565b905090565b601160009054906101000a900460ff16610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90613aeb565b60405180910390fd5b600854610a656007611f4b565b10610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c9061398b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610b179190613b6b565b60206040518083038186803b158015610b2f57600080fd5b505afa158015610b43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b679190612f98565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb49061392b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610c2f9190613b6b565b60206040518083038186803b158015610c4757600080fd5b505afa158015610c5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7f9190612f98565b73ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90613b2b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610d479190613b6b565b60206040518083038186803b158015610d5f57600080fd5b505afa158015610d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d979190612f98565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613b0b565b60405180910390fd5b6010600082815260200190815260200160002060009054906101000a900460ff1615610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e459061390b565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e33600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b8152600401610ecf93929190613779565b600060405180830381600087803b158015610ee957600080fd5b505af1158015610efd573d6000803e3d6000fd5b50505050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e33600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401610f8293929190613779565b600060405180830381600087803b158015610f9c57600080fd5b505af1158015610fb0573d6000803e3d6000fd5b5050505060016010600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610fea6007611f59565b610ffd33610ff86007611f4b565b611f6f565b604051806060016040528084815260200183815260200182815250600f60006110266007611f4b565b8152602001908152602001600020906003611042929190612cf0565b507f521e73f5d0a868ecd26836028d73dc8d12b0a9adc75790e0c8a9a70f608ed8753361106f6007611f4b565b604051806060016040528087815260200186815260200185815250604051611099939291906137fc565b60405180910390a1505050565b6110b76110b1611e8a565b82611f8d565b6110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613acb565b60405180910390fd5b61110183838361206b565b505050565b60006010600083815260200190815260200160002060009054906101000a900460ff169050919050565b61114b83838360405180602001604052806000815250611903565b505050565b61116161115b611e8a565b82611f8d565b6111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613b4b565b60405180910390fd5b6111a9816122d2565b50565b6111b4611e8a565b73ffffffffffffffffffffffffffffffffffffffff166111d26116c9565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613a6b565b60405180910390fd5b80600a908051906020019061123e929190612c6a565b5050565b61124a611e8a565b73ffffffffffffffffffffffffffffffffffffffff166112686116c9565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590613a6b565b60405180910390fd5b60005b8151811015611323576001601060008484815181106112e3576112e2613f84565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061131b90613e7d565b9150506112c1565b5050565b6009805461133490613e1a565b80601f016020809104026020016040519081016040528092919081815260200182805461136090613e1a565b80156113ad5780601f10611382576101008083540402835291602001916113ad565b820191906000526020600020905b81548152906001019060200180831161139057829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613a0b565b60405180910390fd5b80915050919050565b61146f611e8a565b73ffffffffffffffffffffffffffffffffffffffff1661148d6116c9565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613a6b565b60405180910390fd5b6114ed6007611f59565b611500816114fb6007611f4b565b611f6f565b50565b61150b611e8a565b73ffffffffffffffffffffffffffffffffffffffff166115296116c9565b73ffffffffffffffffffffffffffffffffffffffff161461157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690613a6b565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906139eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611649611e8a565b73ffffffffffffffffffffffffffffffffffffffff166116676116c9565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613a6b565b60405180910390fd5b6116c760006123ef565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170290613e1a565b80601f016020809104026020016040519081016040528092919081815260200182805461172e90613e1a565b801561177b5780601f106117505761010080835404028352916020019161177b565b820191906000526020600020905b81548152906001019060200180831161175e57829003601f168201915b5050505050905090565b61178d611e8a565b73ffffffffffffffffffffffffffffffffffffffff166117ab6116c9565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890613a6b565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611857611850611e8a565b83836124b5565b5050565b611863611e8a565b73ffffffffffffffffffffffffffffffffffffffff166118816116c9565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613a6b565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b61191461190e611e8a565b83611f8d565b611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613acb565b60405180910390fd5b61195f84848484612622565b50505050565b61196d611e8a565b73ffffffffffffffffffffffffffffffffffffffff1661198b6116c9565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613a6b565b60405180910390fd5b60005b8151811015611a4657600060106000848481518110611a0657611a05613f84565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611a3e90613e7d565b9150506119e4565b5050565b6060611a5582611e1e565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90613a8b565b60405180910390fd5b6000611a9e61267e565b90506000815111611abe5760405180602001604052806000815250611ae9565b80611ac884612710565b604051602001611ad992919061373a565b6040516020818303038152906040525b915050919050565b611af9612d30565b600f6000838152602001908152602001600020600380602002604051908101604052809291908260038015611b43576020028201915b815481526020019060010190808311611b2f575b50505050509050919050565b6000600854905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c1f611e8a565b73ffffffffffffffffffffffffffffffffffffffff16611c3d6116c9565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613a6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906138ab565b60405180910390fd5b611d0c816123ef565b50565b6000601160009054906101000a900460ff16905090565b600a8054611d3390613e1a565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5f90613e1a565b8015611dac5780601f10611d8157610100808354040283529160200191611dac565b820191906000526020600020905b815481529060010190602001808311611d8f57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f05836113b5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611f89828260405180602001604052806000815250612871565b5050565b6000611f9882611e1e565b611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906139ab565b60405180910390fd5b6000611fe2836113b5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205157508373ffffffffffffffffffffffffffffffffffffffff16612039846107c5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206257506120618185611b83565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661208b826113b5565b73ffffffffffffffffffffffffffffffffffffffff16146120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d8906138cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612151576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121489061394b565b60405180910390fd5b61215c8383836128cc565b612167600082611e92565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b79190613d30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461220e9190613ca9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122cd8383836128d1565b505050565b60006122dd826113b5565b90506122eb816000846128cc565b6122f6600083611e92565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123469190613d30565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123eb816000846128d1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b9061396b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612615919061384e565b60405180910390a3505050565b61262d84848461206b565b612639848484846128d6565b612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f9061388b565b60405180910390fd5b50505050565b6060600a805461268d90613e1a565b80601f01602080910402602001604051908101604052809291908181526020018280546126b990613e1a565b80156127065780601f106126db57610100808354040283529160200191612706565b820191906000526020600020905b8154815290600101906020018083116126e957829003601f168201915b5050505050905090565b60606000821415612758576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061286c565b600082905060005b6000821461278a57808061277390613e7d565b915050600a826127839190613cff565b9150612760565b60008167ffffffffffffffff8111156127a6576127a5613fb3565b5b6040519080825280601f01601f1916602001820160405280156127d85781602001600182028036833780820191505090505b5090505b60008514612865576001826127f19190613d30565b9150600a856128009190613ec6565b603061280c9190613ca9565b60f81b81838151811061282257612821613f84565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561285e9190613cff565b94506127dc565b8093505050505b919050565b61287b8383612a6d565b61288860008484846128d6565b6128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be9061388b565b60405180910390fd5b505050565b505050565b505050565b60006128f78473ffffffffffffffffffffffffffffffffffffffff16612c47565b15612a60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612920611e8a565b8786866040518563ffffffff1660e01b815260040161294294939291906137b0565b602060405180830381600087803b15801561295c57600080fd5b505af192505050801561298d57506040513d601f19601f8201168201806040525081019061298a91906131d1565b60015b612a10573d80600081146129bd576040519150601f19603f3d011682016040523d82523d6000602084013e6129c2565b606091505b50600081511415612a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ff9061388b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a65565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad490613a2b565b60405180910390fd5b612ae681611e1e565b15612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d906138eb565b60405180910390fd5b612b32600083836128cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b829190613ca9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c43600083836128d1565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612c7690613e1a565b90600052602060002090601f016020900481019282612c985760008555612cdf565b82601f10612cb157805160ff1916838001178555612cdf565b82800160010185558215612cdf579182015b82811115612cde578251825591602001919060010190612cc3565b5b509050612cec9190612d52565b5090565b8260038101928215612d1f579160200282015b82811115612d1e578251825591602001919060010190612d03565b5b509050612d2c9190612d52565b5090565b6040518060600160405280600390602082028036833780820191505090505090565b5b80821115612d6b576000816000905550600101612d53565b5090565b6000612d82612d7d84613bab565b613b86565b90508083825260208201905082856020860282011115612da557612da4613fe7565b5b60005b85811015612dd55781612dbb8882612f56565b845260208401935060208301925050600181019050612da8565b5050509392505050565b6000612df2612ded84613bd7565b613b86565b905082815260208101848484011115612e0e57612e0d613fec565b5b612e19848285613dd8565b509392505050565b6000612e34612e2f84613c08565b613b86565b905082815260208101848484011115612e5057612e4f613fec565b5b612e5b848285613dd8565b509392505050565b600081359050612e7281614641565b92915050565b600081519050612e8781614641565b92915050565b600082601f830112612ea257612ea1613fe2565b5b8135612eb2848260208601612d6f565b91505092915050565b600081359050612eca81614658565b92915050565b600081359050612edf8161466f565b92915050565b600081519050612ef48161466f565b92915050565b600082601f830112612f0f57612f0e613fe2565b5b8135612f1f848260208601612ddf565b91505092915050565b600082601f830112612f3d57612f3c613fe2565b5b8135612f4d848260208601612e21565b91505092915050565b600081359050612f6581614686565b92915050565b600060208284031215612f8157612f80613ff6565b5b6000612f8f84828501612e63565b91505092915050565b600060208284031215612fae57612fad613ff6565b5b6000612fbc84828501612e78565b91505092915050565b60008060408385031215612fdc57612fdb613ff6565b5b6000612fea85828601612e63565b9250506020612ffb85828601612e63565b9150509250929050565b60008060006060848603121561301e5761301d613ff6565b5b600061302c86828701612e63565b935050602061303d86828701612e63565b925050604061304e86828701612f56565b9150509250925092565b6000806000806080858703121561307257613071613ff6565b5b600061308087828801612e63565b945050602061309187828801612e63565b93505060406130a287828801612f56565b925050606085013567ffffffffffffffff8111156130c3576130c2613ff1565b5b6130cf87828801612efa565b91505092959194509250565b600080604083850312156130f2576130f1613ff6565b5b600061310085828601612e63565b925050602061311185828601612ebb565b9150509250929050565b6000806040838503121561313257613131613ff6565b5b600061314085828601612e63565b925050602061315185828601612f56565b9150509250929050565b60006020828403121561317157613170613ff6565b5b600082013567ffffffffffffffff81111561318f5761318e613ff1565b5b61319b84828501612e8d565b91505092915050565b6000602082840312156131ba576131b9613ff6565b5b60006131c884828501612ed0565b91505092915050565b6000602082840312156131e7576131e6613ff6565b5b60006131f584828501612ee5565b91505092915050565b60006020828403121561321457613213613ff6565b5b600082013567ffffffffffffffff81111561323257613231613ff1565b5b61323e84828501612f28565b91505092915050565b60006020828403121561325d5761325c613ff6565b5b600061326b84828501612f56565b91505092915050565b60008060006060848603121561328d5761328c613ff6565b5b600061329b86828701612f56565b93505060206132ac86828701612f56565b92505060406132bd86828701612f56565b9150509250925092565b60006132d3838361371c565b60208301905092915050565b6132e881613d64565b82525050565b6132f781613c43565b6133018184613c71565b925061330c82613c39565b8060005b8381101561333d57815161332487826132c7565b965061332f83613c64565b925050600181019050613310565b505050505050565b61334e81613d76565b82525050565b600061335f82613c4e565b6133698185613c7c565b9350613379818560208601613de7565b61338281613ffb565b840191505092915050565b600061339882613c59565b6133a28185613c8d565b93506133b2818560208601613de7565b6133bb81613ffb565b840191505092915050565b60006133d182613c59565b6133db8185613c9e565b93506133eb818560208601613de7565b80840191505092915050565b6000613404603283613c8d565b915061340f8261400c565b604082019050919050565b6000613427602683613c8d565b91506134328261405b565b604082019050919050565b600061344a602583613c8d565b9150613455826140aa565b604082019050919050565b600061346d601c83613c8d565b9150613478826140f9565b602082019050919050565b6000613490601a83613c8d565b915061349b82614122565b602082019050919050565b60006134b3602483613c8d565b91506134be8261414b565b604082019050919050565b60006134d6602483613c8d565b91506134e18261419a565b604082019050919050565b60006134f9601983613c8d565b9150613504826141e9565b602082019050919050565b600061351c602283613c8d565b915061352782614212565b604082019050919050565b600061353f602c83613c8d565b915061354a82614261565b604082019050919050565b6000613562603883613c8d565b915061356d826142b0565b604082019050919050565b6000613585602a83613c8d565b9150613590826142ff565b604082019050919050565b60006135a8602983613c8d565b91506135b38261434e565b604082019050919050565b60006135cb602083613c8d565b91506135d68261439d565b602082019050919050565b60006135ee602c83613c8d565b91506135f9826143c6565b604082019050919050565b6000613611602083613c8d565b915061361c82614415565b602082019050919050565b6000613634602f83613c8d565b915061363f8261443e565b604082019050919050565b6000613657602183613c8d565b91506136628261448d565b604082019050919050565b600061367a603183613c8d565b9150613685826144dc565b604082019050919050565b600061369d601583613c8d565b91506136a88261452b565b602082019050919050565b60006136c0602683613c8d565b91506136cb82614554565b604082019050919050565b60006136e3602683613c8d565b91506136ee826145a3565b604082019050919050565b6000613706603083613c8d565b9150613711826145f2565b604082019050919050565b61372581613dce565b82525050565b61373481613dce565b82525050565b600061374682856133c6565b915061375282846133c6565b91508190509392505050565b600060208201905061377360008301846132df565b92915050565b600060608201905061378e60008301866132df565b61379b60208301856132df565b6137a8604083018461372b565b949350505050565b60006080820190506137c560008301876132df565b6137d260208301866132df565b6137df604083018561372b565b81810360608301526137f18184613354565b905095945050505050565b600060a08201905061381160008301866132df565b61381e602083018561372b565b61382b60408301846132ee565b949350505050565b600060608201905061384860008301846132ee565b92915050565b60006020820190506138636000830184613345565b92915050565b60006020820190508181036000830152613883818461338d565b905092915050565b600060208201905081810360008301526138a4816133f7565b9050919050565b600060208201905081810360008301526138c48161341a565b9050919050565b600060208201905081810360008301526138e48161343d565b9050919050565b6000602082019050818103600083015261390481613460565b9050919050565b6000602082019050818103600083015261392481613483565b9050919050565b60006020820190508181036000830152613944816134a6565b9050919050565b60006020820190508181036000830152613964816134c9565b9050919050565b60006020820190508181036000830152613984816134ec565b9050919050565b600060208201905081810360008301526139a48161350f565b9050919050565b600060208201905081810360008301526139c481613532565b9050919050565b600060208201905081810360008301526139e481613555565b9050919050565b60006020820190508181036000830152613a0481613578565b9050919050565b60006020820190508181036000830152613a248161359b565b9050919050565b60006020820190508181036000830152613a44816135be565b9050919050565b60006020820190508181036000830152613a64816135e1565b9050919050565b60006020820190508181036000830152613a8481613604565b9050919050565b60006020820190508181036000830152613aa481613627565b9050919050565b60006020820190508181036000830152613ac48161364a565b9050919050565b60006020820190508181036000830152613ae48161366d565b9050919050565b60006020820190508181036000830152613b0481613690565b9050919050565b60006020820190508181036000830152613b24816136b3565b9050919050565b60006020820190508181036000830152613b44816136d6565b9050919050565b60006020820190508181036000830152613b64816136f9565b9050919050565b6000602082019050613b80600083018461372b565b92915050565b6000613b90613ba1565b9050613b9c8282613e4c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc657613bc5613fb3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bf257613bf1613fb3565b5b613bfb82613ffb565b9050602081019050919050565b600067ffffffffffffffff821115613c2357613c22613fb3565b5b613c2c82613ffb565b9050602081019050919050565b6000819050919050565b600060039050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cb482613dce565b9150613cbf83613dce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf457613cf3613ef7565b5b828201905092915050565b6000613d0a82613dce565b9150613d1583613dce565b925082613d2557613d24613f26565b5b828204905092915050565b6000613d3b82613dce565b9150613d4683613dce565b925082821015613d5957613d58613ef7565b5b828203905092915050565b6000613d6f82613dae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e05578082015181840152602081019050613dea565b83811115613e14576000848401525b50505050565b60006002820490506001821680613e3257607f821691505b60208210811415613e4657613e45613f55565b5b50919050565b613e5582613ffb565b810181811067ffffffffffffffff82111715613e7457613e73613fb3565b5b80604052505050565b6000613e8882613dce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ebb57613eba613ef7565b5b600182019050919050565b6000613ed182613dce565b9150613edc83613dce565b925082613eec57613eeb613f26565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f3247656e204475636b2077617320616c72656164792075736564000000000000600082015250565b7f596f75206d757374206f776e2074686520726571756573746564204f4720746f60008201527f6b656e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f506f7274616c206973206e6f74206163746976652e0000000000000000000000600082015250565b7f596f75206d757374206f776e2074686520726571756573746564203247656e2060008201527f746f6b656e2e0000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206f776e20746865207265717565737465642048656c6c2060008201527f746f6b656e2e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61464a81613d64565b811461465557600080fd5b50565b61466181613d76565b811461466c57600080fd5b50565b61467881613d82565b811461468357600080fd5b50565b61468f81613dce565b811461469a57600080fd5b5056fea2646970667358221220e5bb200fe49a375fc27732c9c304b4e837f4aa621051e4e341bd602abdda592f64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000f4b28d46cab209bc5fa987a92a26a5680538e450000000000000000000000007b7dad77e4090160f9cb6ba57a5a774c12d4c28a000000000000000000000000488fb59d73669d5a1cdf0960214563756594c528
-----Decoded View---------------
Arg [0] : ogAddress (address): 0x0F4B28D46CAB209bC5fa987A92A26a5680538e45
Arg [1] : hellAddress (address): 0x7B7dAd77E4090160F9cB6BA57A5a774c12D4c28a
Arg [2] : secondGenAddress (address): 0x488FB59d73669d5A1cDf0960214563756594C528
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000f4b28d46cab209bc5fa987a92a26a5680538e45
Arg [1] : 0000000000000000000000007b7dad77e4090160f9cb6ba57a5a774c12d4c28a
Arg [2] : 000000000000000000000000488fb59d73669d5a1cdf0960214563756594c528
Loading...
Loading
Loading...
Loading
OVERVIEW
The world is about to turn upside duck![OG Ducks](https://opensea.io/collection/nonconformistducks) /[Hell Ducks](https://opensea.io/collection/nonconformisthellducks) /[2nd Gen Ducks](https://opensea.io/collection/noncoducks2gen) /[Rare Items](https://opensea.io/collection/noncoducksrareitems)Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.