ERC-721
Overview
Max Total Supply
120 FFT
Holders
91
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FlyingFormations
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // ___ __ _ // / _/ / / __ __ (_) ___ ___ _ // / _/ / / / // / / / / _ \ / _ `/ // /_/ /_/ \_, / /_/ /_//_/ \_, / // /___/ /___/ // ___ __ _ // / _/ ___ ____ __ _ ___ _ / /_ (_) ___ ___ ___ // / _/ / _ \ / __/ / ' \/ _ `// __/ / / / _ \ / _ \ (_-< // /_/ \___//_/ /_/_/_/\_,_/ \__/ /_/ \___//_//_//___/ // // import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract FlyingFormations is ERC721Enumerable, Ownable, Pausable { using SafeMath for uint; using Strings for uint256; event TokenBought( uint tokenId, address recipient, uint paid, uint footballTeamReceives, uint ducksReceives, uint divisionStReceives ); event AirMax1Redeemed( uint tokenId, address recipient ); uint constant eth = 1e18; // WETH uint constant hrs = 1 hours; // HOURS (in seconds) uint constant price1 = 125*eth/10; // 12.5 ETH uint constant stage1 = 3*hrs; // 3 hours uint constant price2 = 5*eth; // 5 ETH uint constant stage2 = 9*hrs; // 9 hours uint constant floorPrice = 1*eth; // 1 ETH uint constant priceDeductionRate1 = (price1 - price2)/stage1; // drop to 5.0 ETH at 3 hours uint constant priceDeductionRate2 = (price2 - floorPrice)/stage2; // drop to 1.0 ETH at 12 hours mapping (address => bool) hasPurchased; uint saleStartsAt; bool redeemEnabled; bool redeemExpired; string sneakerBaseURI; string standardBaseURI; struct PremintEntry { address addr; uint tokenId; } mapping (uint => address) public sneakerRedeemedBy; address payable footballTeamWallet; address payable ducksWallet; address payable divisionStWallet; uint constant TEAM_SPLIT = 6750; uint constant DUCKS_SPLIT = 1000; uint constant MAX_TOKENS = 120; constructor( uint _saleStartsAt, string memory _sneakerBaseURI, string memory _standardBaseURI, PremintEntry[] memory premintEntries, address payable _footballTeamWallet, address payable _ducksWallet, address payable _divisionStWallet ) ERC721("Flying Formations", "FFT") { saleStartsAt = _saleStartsAt; // Set baseURIs for pre-redeem, and // post-redeem NFTs sneakerBaseURI = _sneakerBaseURI; standardBaseURI = _standardBaseURI; // Premint tokens for whitelist token recipients for(uint i; i < premintEntries.length; i++){ _mint(premintEntries[i].addr, premintEntries[i].tokenId); hasPurchased[premintEntries[i].addr] = true; sneakerRedeemedBy[premintEntries[i].tokenId] = premintEntries[i].addr; } // Set team wallets footballTeamWallet = _footballTeamWallet; ducksWallet = _ducksWallet; divisionStWallet = _divisionStWallet; } function buy(address recipient, uint tokenId) public payable { require(!hasPurchased[msg.sender], "FlyingFormations: User has already bought one NFT"); require(msg.sender == tx.origin, "FlyingFormations: Account is not an EOA"); require(block.timestamp >= saleStartsAt, "FlyingFormations: auction has not started"); require(tokenId <= MAX_TOKENS && tokenId > 0, "FlyingFormations: invalid tokenId"); uint price = getPrice(); require(msg.value >= price, "FlyingFormations: insufficient funds sent, please check current price"); // Mint token and register purchaser so // user cannot buy more than one _mint(recipient, tokenId); hasPurchased[msg.sender] = true; // Distribute funds to teams uint footballTeamReceives = msg.value.mul(TEAM_SPLIT).div(10000); uint ducksReceives = msg.value.mul(DUCKS_SPLIT).div(10000); uint divisionStReceives = msg.value .sub(footballTeamReceives) .sub(ducksReceives); (bool success, ) = footballTeamWallet.call{value: footballTeamReceives}(""); require(success, "FlyingFormations: footballTeamWallet failed to receive"); (success, ) = ducksWallet.call{value: ducksReceives}(""); require(success, "FlyingFormations: ducksWallet failed to receive"); (success, ) = divisionStWallet.call{value: divisionStReceives}(""); require(success, "FlyingFormations: divisionStWallet failed to receive"); emit TokenBought(tokenId, recipient, price, footballTeamReceives, ducksReceives, divisionStReceives); } // Redeem functionality for claiming Nike Air Max 1 OU Edition // _ _ // (_\__/(,_ // | \ `_////-._ // _ _ L_/__ "=> __/`\ // (_\__/(,_ |=====;__/___./ // | \ `_////-._'-'-'-""""""` // J_/___"=> __/`\ // |=====;__/___./ // '-'-'-"""""""` function redeem(uint tokenId) public { require(redeemEnabled, "FlyingFormations: redeem is currently not enabled"); require(!redeemExpired, "FlyingFormations: redeem window has expired"); require( sneakerRedeemedBy[tokenId] == address(0x0), "FlyingFormations: token has already beened redeemed" ); require( msg.sender == ownerOf(tokenId), "FlyingFormations: caller is not owner" ); sneakerRedeemedBy[tokenId] = ownerOf(tokenId); emit AirMax1Redeemed(tokenId, msg.sender); } // ============ PUBLIC VIEW FUNCTIONS ============ function getPrice() public view returns (uint) { require(block.timestamp >= saleStartsAt, "FlyingFormations: auction has not started"); uint elapsedTime = block.timestamp - saleStartsAt; if (elapsedTime < stage1) { return price1.sub(elapsedTime.mul(priceDeductionRate1)); } else if (elapsedTime < stage1 + stage2) { return price2.sub((elapsedTime.sub(stage1)).mul(priceDeductionRate2)); } else { return floorPrice; } } function getAllTokens() public view returns (uint[] memory) { uint n = totalSupply(); uint[] memory tokenIds = new uint[](n); for(uint i = 0; i < n; i++){ tokenIds[i] = tokenByIndex(i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (redeemExpired || sneakerRedeemedBy[tokenId] != address(0x0)){ return string(abi.encodePacked(standardBaseURI, tokenId.toString(), ".json")); } else { return string(abi.encodePacked(sneakerBaseURI, tokenId.toString(), ".json")); } } // ============ OWNER INTERFACE ============ function updateFootballTeamWallet(address payable _wallet) public onlyOwner { footballTeamWallet = _wallet; } function updateDucksWallet(address payable _wallet) public onlyOwner { ducksWallet = _wallet; } function updateDivisionStWallet(address payable _wallet) public onlyOwner { divisionStWallet = _wallet; } function updateBaseURI(string calldata __baseURI) public onlyOwner { standardBaseURI = __baseURI; } function updateSneakerBaseURI(string calldata __baseURI) public onlyOwner { sneakerBaseURI = __baseURI; } function updateSaleStartsAt(uint _saleStartsAt) public onlyOwner { saleStartsAt = _saleStartsAt; } function updateRedeemEnabled(bool _redeemEnabled) public onlyOwner { redeemEnabled = _redeemEnabled; } function updateRedeemExpired(bool _redeemExpired) public onlyOwner { redeemExpired = _redeemExpired; } function updatePaused(bool _paused) public onlyOwner { if (_paused) { _pause(); } else { _unpause(); } } }
// 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 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 {} }
// 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/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/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_saleStartsAt","type":"uint256"},{"internalType":"string","name":"_sneakerBaseURI","type":"string"},{"internalType":"string","name":"_standardBaseURI","type":"string"},{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct FlyingFormations.PremintEntry[]","name":"premintEntries","type":"tuple[]"},{"internalType":"address payable","name":"_footballTeamWallet","type":"address"},{"internalType":"address payable","name":"_ducksWallet","type":"address"},{"internalType":"address payable","name":"_divisionStWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"AirMax1Redeemed","type":"event"},{"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":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"paid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"footballTeamReceives","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ducksReceives","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"divisionStReceives","type":"uint256"}],"name":"TokenBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getAllTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"redeem","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sneakerRedeemedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"__baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"}],"name":"updateDivisionStWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"}],"name":"updateDucksWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"}],"name":"updateFootballTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"updatePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_redeemEnabled","type":"bool"}],"name":"updateRedeemEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_redeemExpired","type":"bool"}],"name":"updateRedeemExpired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartsAt","type":"uint256"}],"name":"updateSaleStartsAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"updateSneakerBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162006b2b38038062006b2b833981810160405281019062000037919062000f71565b6040518060400160405280601181526020017f466c79696e6720466f726d6174696f6e730000000000000000000000000000008152506040518060400160405280600381526020017f46465400000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000d15565b508060019080519060200190620000d492919062000d15565b505050620000f7620000eb6200045460201b60201c565b6200045c60201b60201c565b6000600a60146101000a81548160ff02191690831515021790555086600c8190555085600e90805190602001906200013192919062000d15565b5084600f90805190602001906200014a92919062000d15565b5060005b84518110156200038357620001f485828151811062000196577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160000151868381518110620001dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151602001516200052260201b60201c565b6001600b600087848151811062000234577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550848181518110620002cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600001516010600087848151811062000315577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080806200037a906200136f565b9150506200014e565b5082601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505050506200154a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000595576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058c9062001122565b60405180910390fd5b620005a6816200070860201b60201c565b15620005e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e090620010de565b60405180910390fd5b620005fd600083836200077460201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200064f9190620011e3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200078c838383620008bb60201b6200232d1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620007d957620007d381620008c060201b60201c565b62000821565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000820576200081f83826200090960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200086e57620008688162000a8660201b60201c565b620008b6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620008b557620008b4828262000bce60201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620009238462000c5a60201b62000ffd1760201c565b6200092f919062001240565b905060006007600084815260200190815260200160002054905081811462000a15576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000a9c919062001240565b905060006009600084815260200190815260200160002054905060006008838154811062000af3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000b3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000bb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000be68362000c5a60201b62000ffd1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000cce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cc59062001100565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000d239062001303565b90600052602060002090601f01602090048101928262000d47576000855562000d93565b82601f1062000d6257805160ff191683800117855562000d93565b8280016001018555821562000d93579182015b8281111562000d9257825182559160200191906001019062000d75565b5b50905062000da2919062000da6565b5090565b5b8082111562000dc157600081600090555060010162000da7565b5090565b600062000ddc62000dd6846200116d565b62001144565b9050808382526020820190508285604086028201111562000dfc57600080fd5b60005b8581101562000e30578162000e15888262000f07565b84526020840193506040830192505060018101905062000dff565b5050509392505050565b600062000e5162000e4b846200119c565b62001144565b90508281526020810184848401111562000e6a57600080fd5b62000e77848285620012cd565b509392505050565b60008151905062000e9081620014fc565b92915050565b60008151905062000ea78162001516565b92915050565b600082601f83011262000ebf57600080fd5b815162000ed184826020860162000dc5565b91505092915050565b600082601f83011262000eec57600080fd5b815162000efe84826020860162000e3a565b91505092915050565b60006040828403121562000f1a57600080fd5b62000f26604062001144565b9050600062000f388482850162000e7f565b600083015250602062000f4e8482850162000f5a565b60208301525092915050565b60008151905062000f6b8162001530565b92915050565b600080600080600080600060e0888a03121562000f8d57600080fd5b600062000f9d8a828b0162000f5a565b975050602088015167ffffffffffffffff81111562000fbb57600080fd5b62000fc98a828b0162000eda565b965050604088015167ffffffffffffffff81111562000fe757600080fd5b62000ff58a828b0162000eda565b955050606088015167ffffffffffffffff8111156200101357600080fd5b620010218a828b0162000ead565b9450506080620010348a828b0162000e96565b93505060a0620010478a828b0162000e96565b92505060c06200105a8a828b0162000e96565b91505092959891949750929550565b600062001078601c83620011d2565b915062001085826200145b565b602082019050919050565b60006200109f602a83620011d2565b9150620010ac8262001484565b604082019050919050565b6000620010c6602083620011d2565b9150620010d382620014d3565b602082019050919050565b60006020820190508181036000830152620010f98162001069565b9050919050565b600060208201905081810360008301526200111b8162001090565b9050919050565b600060208201905081810360008301526200113d81620010b7565b9050919050565b60006200115062001163565b90506200115e828262001339565b919050565b6000604051905090565b600067ffffffffffffffff8211156200118b576200118a6200141b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620011ba57620011b96200141b565b5b620011c5826200144a565b9050602081019050919050565b600082825260208201905092915050565b6000620011f082620012c3565b9150620011fd83620012c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620012355762001234620013bd565b5b828201905092915050565b60006200124d82620012c3565b91506200125a83620012c3565b92508282101562001270576200126f620013bd565b5b828203905092915050565b60006200128882620012a3565b9050919050565b60006200129c82620012a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620012ed578082015181840152602081019050620012d0565b83811115620012fd576000848401525b50505050565b600060028204905060018216806200131c57607f821691505b60208210811415620013335762001332620013ec565b5b50919050565b62001344826200144a565b810181811067ffffffffffffffff821117156200136657620013656200141b565b5b80604052505050565b60006200137c82620012c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620013b257620013b1620013bd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62001507816200127b565b81146200151357600080fd5b50565b62001521816200128f565b81146200152d57600080fd5b50565b6200153b81620012c3565b81146200154757600080fd5b50565b6155d1806200155a6000396000f3fe6080604052600436106101f85760003560e01c80637cb5f6781161010d578063b88d4fde116100a0578063db006a751161006f578063db006a751461071d578063e985e9c514610746578063f2fde38b14610783578063f74025cf146107ac578063f77f0b99146107e9576101f8565b8063b88d4fde14610672578063c87b56dd1461069b578063cce7ec13146106d8578063d287f619146106f4576101f8565b806398d5fdca116100dc57806398d5fdca146105cc578063a22cb465146105f7578063ab3b8a7114610620578063b6ff8b2514610649576101f8565b80637cb5f678146105245780638da5cb5b1461054d578063931688cb1461057857806395d89b41146105a1576101f8565b80632a5c792a116101905780635c975abb1161015f5780635c975abb1461043f5780635dd7b59d1461046a5780636352211e1461049357806370a08231146104d0578063715018a61461050d576101f8565b80632a5c792a146103715780632f745c591461039c57806342842e0e146103d95780634f6ccce714610402576101f8565b806308cdc2a8116101cc57806308cdc2a8146102cb578063095ea7b3146102f457806318160ddd1461031d57806323b872dd14610348576101f8565b8062f69f8f146101fd57806301ffc9a71461022657806306fdde0314610263578063081812fc1461028e575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f9190613a4f565b610812565b005b34801561023257600080fd5b5061024d60048036038101906102489190613a78565b6108ab565b60405161025a919061427f565b60405180910390f35b34801561026f57600080fd5b50610278610925565b604051610285919061429a565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b09190613b0f565b6109b7565b6040516102c291906141f6565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613a4f565b610a3c565b005b34801561030057600080fd5b5061031b60048036038101906103169190613a13565b610ad7565b005b34801561032957600080fd5b50610332610bef565b60405161033f91906146bc565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061390d565b610bfc565b005b34801561037d57600080fd5b50610386610c5c565b604051610393919061425d565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613a13565b610d52565b6040516103d091906146bc565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061390d565b610df7565b005b34801561040e57600080fd5b5061042960048036038101906104249190613b0f565b610e17565b60405161043691906146bc565b60405180910390f35b34801561044b57600080fd5b50610454610eae565b604051610461919061427f565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190613b0f565b610ec5565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613b0f565b610f4b565b6040516104c791906141f6565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f2919061387f565b610ffd565b60405161050491906146bc565b60405180910390f35b34801561051957600080fd5b506105226110b5565b005b34801561053057600080fd5b5061054b600480360381019061054691906138a8565b61113d565b005b34801561055957600080fd5b506105626111fd565b60405161056f91906141f6565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613aca565b611227565b005b3480156105ad57600080fd5b506105b66112b9565b6040516105c3919061429a565b60405180910390f35b3480156105d857600080fd5b506105e161134b565b6040516105ee91906146bc565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906139d7565b611557565b005b34801561062c57600080fd5b5061064760048036038101906106429190613a4f565b61156d565b005b34801561065557600080fd5b50610670600480360381019061066b91906138a8565b611606565b005b34801561067e57600080fd5b506106996004803603810190610694919061395c565b6116c6565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613b0f565b611728565b6040516106cf919061429a565b60405180910390f35b6106f260048036038101906106ed9190613a13565b611857565b005b34801561070057600080fd5b5061071b60048036038101906107169190613aca565b611dcf565b005b34801561072957600080fd5b50610744600480360381019061073f9190613b0f565b611e61565b005b34801561075257600080fd5b5061076d600480360381019061076891906138d1565b6120ae565b60405161077a919061427f565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a5919061387f565b612142565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190613b0f565b61223a565b6040516107e091906141f6565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b91906138a8565b61226d565b005b61081a612332565b73ffffffffffffffffffffffffffffffffffffffff166108386111fd565b73ffffffffffffffffffffffffffffffffffffffff161461088e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108859061451c565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e575061091d8261233a565b5b9050919050565b60606000805461093490614a30565b80601f016020809104026020016040519081016040528092919081815260200182805461096090614a30565b80156109ad5780601f10610982576101008083540402835291602001916109ad565b820191906000526020600020905b81548152906001019060200180831161099057829003601f168201915b5050505050905090565b60006109c28261241c565b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906144dc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a44612332565b73ffffffffffffffffffffffffffffffffffffffff16610a626111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061451c565b60405180910390fd5b8015610acb57610ac6612488565b610ad4565b610ad361252b565b5b50565b6000610ae282610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a906145bc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b72612332565b73ffffffffffffffffffffffffffffffffffffffff161480610ba15750610ba081610b9b612332565b6120ae565b5b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061443c565b60405180910390fd5b610bea83836125cd565b505050565b6000600880549050905090565b610c0d610c07612332565b82612686565b610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906145fc565b60405180910390fd5b610c57838383612764565b505050565b60606000610c68610bef565b905060008167ffffffffffffffff811115610cac577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cda5781602001602082028036833780820191505090505b50905060005b82811015610d4957610cf181610e17565b828281518110610d2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d4190614a93565b915050610ce0565b50809250505090565b6000610d5d83610ffd565b8210610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906142fc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e12838383604051806020016040528060008152506116c6565b505050565b6000610e21610bef565b8210610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e599061463c565b60405180910390fd5b60088281548110610e9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600a60149054906101000a900460ff16905090565b610ecd612332565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061451c565b60405180910390fd5b80600c8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb9061447c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110659061445c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110bd612332565b73ffffffffffffffffffffffffffffffffffffffff166110db6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061451c565b60405180910390fd5b61113b60006129c0565b565b611145612332565b73ffffffffffffffffffffffffffffffffffffffff166111636111fd565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b09061451c565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122f612332565b73ffffffffffffffffffffffffffffffffffffffff1661124d6111fd565b73ffffffffffffffffffffffffffffffffffffffff16146112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a9061451c565b60405180910390fd5b8181600f91906112b49291906136ac565b505050565b6060600180546112c890614a30565b80601f01602080910402602001604051908101604052809291908181526020018280546112f490614a30565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b5050505050905090565b6000600c54421015611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061459c565b60405180910390fd5b6000600c54426113a29190614934565b9050610e1060036113b391906148da565b81101561145f57611457611428610e1060036113cf91906148da565b670de0b6b3a764000060056113e491906148da565b600a670de0b6b3a7640000607d6113fb91906148da565b61140591906148a9565b61140f9190614934565b61141991906148a9565b83612a8690919063ffffffff16565b600a670de0b6b3a7640000607d61143f91906148da565b61144991906148a9565b612a9c90919063ffffffff16565b915050611554565b610e10600961146e91906148da565b610e10600361147d91906148da565b6114879190614853565b81101561153b57611533611510610e1060096114a391906148da565b670de0b6b3a764000060016114b891906148da565b670de0b6b3a764000060056114cd91906148da565b6114d79190614934565b6114e191906148a9565b611502610e1060036114f391906148da565b85612a9c90919063ffffffff16565b612a8690919063ffffffff16565b670de0b6b3a7640000600561152591906148da565b612a9c90919063ffffffff16565b915050611554565b670de0b6b3a7640000600161155091906148da565b9150505b90565b611569611562612332565b8383612ab2565b5050565b611575612332565b73ffffffffffffffffffffffffffffffffffffffff166115936111fd565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e09061451c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b61160e612332565b73ffffffffffffffffffffffffffffffffffffffff1661162c6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116799061451c565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116d76116d1612332565b83612686565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906145fc565b60405180910390fd5b61172284848484612c1f565b50505050565b60606117338261241c565b611772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117699061457c565b60405180910390fd5b600d60019054906101000a900460ff16806117ed5750600073ffffffffffffffffffffffffffffffffffffffff166010600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561182457600f6117fd83612c7b565b60405160200161180e9291906141b2565b6040516020818303038152906040529050611852565b600e61182f83612c7b565b6040516020016118409291906141b2565b60405160208183030381529060405290505b919050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906142bc565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611949906144fc565b60405180910390fd5b600c54421015611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e9061459c565b60405180910390fd5b607881111580156119a85750600081115b6119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061469c565b60405180910390fd5b60006119f161134b565b905080341015611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d9061441c565b60405180910390fd5b611a408383612e28565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000611ac3612710611ab5611a5e34612a8690919063ffffffff16565b612ff690919063ffffffff16565b90506000611af0612710611ae26103e834612a8690919063ffffffff16565b612ff690919063ffffffff16565b90506000611b1982611b0b8534612a9c90919063ffffffff16565b612a9c90919063ffffffff16565b90506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1684604051611b63906141e1565b60006040518083038185875af1925050503d8060008114611ba0576040519150601f19603f3d011682016040523d82523d6000602084013e611ba5565b606091505b5050905080611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be09061453c565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611c2f906141e1565b60006040518083038185875af1925050503d8060008114611c6c576040519150601f19603f3d011682016040523d82523d6000602084013e611c71565b606091505b50508091505080611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae906145dc565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611cfd906141e1565b60006040518083038185875af1925050503d8060008114611d3a576040519150601f19603f3d011682016040523d82523d6000602084013e611d3f565b606091505b50508091505080611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c9061461c565b60405180910390fd5b7f4689c69f82cdf5b000bb00a84dd3258356c9997272fd94a9153e9d13a5b7c29a868887878787604051611dbe96959493929190614700565b60405180910390a150505050505050565b611dd7612332565b73ffffffffffffffffffffffffffffffffffffffff16611df56111fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e429061451c565b60405180910390fd5b8181600e9190611e5c9291906136ac565b505050565b600d60009054906101000a900460ff16611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea79061449c565b60405180910390fd5b600d60019054906101000a900460ff1615611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef7906143dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f999061465c565b60405180910390fd5b611fab81610f4b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f9061467c565b60405180910390fd5b61202181610f4b565b6010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fccdaa2011001a11fd94d2cca01f6c5d72faf271d651024e5921864015d2f179a81336040516120a39291906146d7565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214a612332565b73ffffffffffffffffffffffffffffffffffffffff166121686111fd565b73ffffffffffffffffffffffffffffffffffffffff16146121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b59061451c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122259061433c565b60405180910390fd5b612237816129c0565b50565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612275612332565b73ffffffffffffffffffffffffffffffffffffffff166122936111fd565b73ffffffffffffffffffffffffffffffffffffffff16146122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e09061451c565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061240557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061241557506124148261300c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612490610eae565b156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906143fc565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612514612332565b60405161252191906141f6565b60405180910390a1565b612533610eae565b612572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612569906142dc565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125b6612332565b6040516125c391906141f6565b60405180910390a1565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264083610f4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126918261241c565b6126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c7906143bc565b60405180910390fd5b60006126db83610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274a57508373ffffffffffffffffffffffffffffffffffffffff16612732846109b7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061275b575061275a81856120ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278482610f4b565b73ffffffffffffffffffffffffffffffffffffffff16146127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d19061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128419061437c565b60405180910390fd5b612855838383613076565b6128606000826125cd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b09190614934565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129079190614853565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612a9491906148da565b905092915050565b60008183612aaa9190614934565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b189061439c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c12919061427f565b60405180910390a3505050565b612c2a848484612764565b612c368484848461318a565b612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c9061431c565b60405180910390fd5b50505050565b60606000821415612cc3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e23565b600082905060005b60008214612cf5578080612cde90614a93565b915050600a82612cee91906148a9565b9150612ccb565b60008167ffffffffffffffff811115612d37577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d695781602001600182028036833780820191505090505b5090505b60008514612e1c57600182612d829190614934565b9150600a85612d919190614adc565b6030612d9d9190614853565b60f81b818381518110612dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e1591906148a9565b9450612d6d565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8f906144bc565b60405180910390fd5b612ea18161241c565b15612ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed89061435c565b60405180910390fd5b612eed60008383613076565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3d9190614853565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000818361300491906148a9565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61308183838361232d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130c4576130bf81613321565b613103565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461310257613101838261336a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561314657613141816134d7565b613185565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461318457613183828261361a565b5b5b505050565b60006131ab8473ffffffffffffffffffffffffffffffffffffffff16613699565b15613314578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131d4612332565b8786866040518563ffffffff1660e01b81526004016131f69493929190614211565b602060405180830381600087803b15801561321057600080fd5b505af192505050801561324157506040513d601f19601f8201168201806040525081019061323e9190613aa1565b60015b6132c4573d8060008114613271576040519150601f19603f3d011682016040523d82523d6000602084013e613276565b606091505b506000815114156132bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b39061431c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613319565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161337784610ffd565b6133819190614934565b9050600060076000848152602001908152602001600020549050818114613466576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134eb9190614934565b9050600060096000848152602001908152602001600020549050600060088381548110613541577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613589577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061362583610ffd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546136b890614a30565b90600052602060002090601f0160209004810192826136da5760008555613721565b82601f106136f357803560ff1916838001178555613721565b82800160010185558215613721579182015b82811115613720578235825591602001919060010190613705565b5b50905061372e9190613732565b5090565b5b8082111561374b576000816000905550600101613733565b5090565b600061376261375d84614786565b614761565b90508281526020810184848401111561377a57600080fd5b6137858482856149ee565b509392505050565b60008135905061379c81615528565b92915050565b6000813590506137b18161553f565b92915050565b6000813590506137c681615556565b92915050565b6000813590506137db8161556d565b92915050565b6000815190506137f08161556d565b92915050565b600082601f83011261380757600080fd5b813561381784826020860161374f565b91505092915050565b60008083601f84011261383257600080fd5b8235905067ffffffffffffffff81111561384b57600080fd5b60208301915083600182028301111561386357600080fd5b9250929050565b60008135905061387981615584565b92915050565b60006020828403121561389157600080fd5b600061389f8482850161378d565b91505092915050565b6000602082840312156138ba57600080fd5b60006138c8848285016137a2565b91505092915050565b600080604083850312156138e457600080fd5b60006138f28582860161378d565b92505060206139038582860161378d565b9150509250929050565b60008060006060848603121561392257600080fd5b60006139308682870161378d565b93505060206139418682870161378d565b92505060406139528682870161386a565b9150509250925092565b6000806000806080858703121561397257600080fd5b60006139808782880161378d565b94505060206139918782880161378d565b93505060406139a28782880161386a565b925050606085013567ffffffffffffffff8111156139bf57600080fd5b6139cb878288016137f6565b91505092959194509250565b600080604083850312156139ea57600080fd5b60006139f88582860161378d565b9250506020613a09858286016137b7565b9150509250929050565b60008060408385031215613a2657600080fd5b6000613a348582860161378d565b9250506020613a458582860161386a565b9150509250929050565b600060208284031215613a6157600080fd5b6000613a6f848285016137b7565b91505092915050565b600060208284031215613a8a57600080fd5b6000613a98848285016137cc565b91505092915050565b600060208284031215613ab357600080fd5b6000613ac1848285016137e1565b91505092915050565b60008060208385031215613add57600080fd5b600083013567ffffffffffffffff811115613af757600080fd5b613b0385828601613820565b92509250509250929050565b600060208284031215613b2157600080fd5b6000613b2f8482850161386a565b91505092915050565b6000613b448383614194565b60208301905092915050565b613b5981614968565b82525050565b6000613b6a826147dc565b613b74818561480a565b9350613b7f836147b7565b8060005b83811015613bb0578151613b978882613b38565b9750613ba2836147fd565b925050600181019050613b83565b5085935050505092915050565b613bc68161498c565b82525050565b6000613bd7826147e7565b613be1818561481b565b9350613bf18185602086016149fd565b613bfa81614bc9565b840191505092915050565b6000613c10826147f2565b613c1a8185614837565b9350613c2a8185602086016149fd565b613c3381614bc9565b840191505092915050565b6000613c49826147f2565b613c538185614848565b9350613c638185602086016149fd565b80840191505092915050565b60008154613c7c81614a30565b613c868186614848565b94506001821660008114613ca15760018114613cb257613ce5565b60ff19831686528186019350613ce5565b613cbb856147c7565b60005b83811015613cdd57815481890152600182019150602081019050613cbe565b838801955050505b50505092915050565b6000613cfb603183614837565b9150613d0682614bda565b604082019050919050565b6000613d1e601483614837565b9150613d2982614c29565b602082019050919050565b6000613d41602b83614837565b9150613d4c82614c52565b604082019050919050565b6000613d64603283614837565b9150613d6f82614ca1565b604082019050919050565b6000613d87602683614837565b9150613d9282614cf0565b604082019050919050565b6000613daa601c83614837565b9150613db582614d3f565b602082019050919050565b6000613dcd602483614837565b9150613dd882614d68565b604082019050919050565b6000613df0601983614837565b9150613dfb82614db7565b602082019050919050565b6000613e13602c83614837565b9150613e1e82614de0565b604082019050919050565b6000613e36602b83614837565b9150613e4182614e2f565b604082019050919050565b6000613e59601083614837565b9150613e6482614e7e565b602082019050919050565b6000613e7c604583614837565b9150613e8782614ea7565b606082019050919050565b6000613e9f603883614837565b9150613eaa82614f1c565b604082019050919050565b6000613ec2602a83614837565b9150613ecd82614f6b565b604082019050919050565b6000613ee5602983614837565b9150613ef082614fba565b604082019050919050565b6000613f08603183614837565b9150613f1382615009565b604082019050919050565b6000613f2b602083614837565b9150613f3682615058565b602082019050919050565b6000613f4e602c83614837565b9150613f5982615081565b604082019050919050565b6000613f71600583614848565b9150613f7c826150d0565b600582019050919050565b6000613f94602783614837565b9150613f9f826150f9565b604082019050919050565b6000613fb7602083614837565b9150613fc282615148565b602082019050919050565b6000613fda603683614837565b9150613fe582615171565b604082019050919050565b6000613ffd602983614837565b9150614008826151c0565b604082019050919050565b6000614020602f83614837565b915061402b8261520f565b604082019050919050565b6000614043602983614837565b915061404e8261525e565b604082019050919050565b6000614066602183614837565b9150614071826152ad565b604082019050919050565b600061408960008361482c565b9150614094826152fc565b600082019050919050565b60006140ac602f83614837565b91506140b7826152ff565b604082019050919050565b60006140cf603183614837565b91506140da8261534e565b604082019050919050565b60006140f2603483614837565b91506140fd8261539d565b604082019050919050565b6000614115602c83614837565b9150614120826153ec565b604082019050919050565b6000614138603383614837565b91506141438261543b565b604082019050919050565b600061415b602583614837565b91506141668261548a565b604082019050919050565b600061417e602183614837565b9150614189826154d9565b604082019050919050565b61419d816149e4565b82525050565b6141ac816149e4565b82525050565b60006141be8285613c6f565b91506141ca8284613c3e565b91506141d582613f64565b91508190509392505050565b60006141ec8261407c565b9150819050919050565b600060208201905061420b6000830184613b50565b92915050565b60006080820190506142266000830187613b50565b6142336020830186613b50565b61424060408301856141a3565b81810360608301526142528184613bcc565b905095945050505050565b600060208201905081810360008301526142778184613b5f565b905092915050565b60006020820190506142946000830184613bbd565b92915050565b600060208201905081810360008301526142b48184613c05565b905092915050565b600060208201905081810360008301526142d581613cee565b9050919050565b600060208201905081810360008301526142f581613d11565b9050919050565b6000602082019050818103600083015261431581613d34565b9050919050565b6000602082019050818103600083015261433581613d57565b9050919050565b6000602082019050818103600083015261435581613d7a565b9050919050565b6000602082019050818103600083015261437581613d9d565b9050919050565b6000602082019050818103600083015261439581613dc0565b9050919050565b600060208201905081810360008301526143b581613de3565b9050919050565b600060208201905081810360008301526143d581613e06565b9050919050565b600060208201905081810360008301526143f581613e29565b9050919050565b6000602082019050818103600083015261441581613e4c565b9050919050565b6000602082019050818103600083015261443581613e6f565b9050919050565b6000602082019050818103600083015261445581613e92565b9050919050565b6000602082019050818103600083015261447581613eb5565b9050919050565b6000602082019050818103600083015261449581613ed8565b9050919050565b600060208201905081810360008301526144b581613efb565b9050919050565b600060208201905081810360008301526144d581613f1e565b9050919050565b600060208201905081810360008301526144f581613f41565b9050919050565b6000602082019050818103600083015261451581613f87565b9050919050565b6000602082019050818103600083015261453581613faa565b9050919050565b6000602082019050818103600083015261455581613fcd565b9050919050565b6000602082019050818103600083015261457581613ff0565b9050919050565b6000602082019050818103600083015261459581614013565b9050919050565b600060208201905081810360008301526145b581614036565b9050919050565b600060208201905081810360008301526145d581614059565b9050919050565b600060208201905081810360008301526145f58161409f565b9050919050565b60006020820190508181036000830152614615816140c2565b9050919050565b60006020820190508181036000830152614635816140e5565b9050919050565b6000602082019050818103600083015261465581614108565b9050919050565b600060208201905081810360008301526146758161412b565b9050919050565b600060208201905081810360008301526146958161414e565b9050919050565b600060208201905081810360008301526146b581614171565b9050919050565b60006020820190506146d160008301846141a3565b92915050565b60006040820190506146ec60008301856141a3565b6146f96020830184613b50565b9392505050565b600060c08201905061471560008301896141a3565b6147226020830188613b50565b61472f60408301876141a3565b61473c60608301866141a3565b61474960808301856141a3565b61475660a08301846141a3565b979650505050505050565b600061476b61477c565b90506147778282614a62565b919050565b6000604051905090565b600067ffffffffffffffff8211156147a1576147a0614b9a565b5b6147aa82614bc9565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061485e826149e4565b9150614869836149e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b0d565b5b828201905092915050565b60006148b4826149e4565b91506148bf836149e4565b9250826148cf576148ce614b3c565b5b828204905092915050565b60006148e5826149e4565b91506148f0836149e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b0d565b5b828202905092915050565b600061493f826149e4565b915061494a836149e4565b92508282101561495d5761495c614b0d565b5b828203905092915050565b6000614973826149c4565b9050919050565b6000614985826149c4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a1b578082015181840152602081019050614a00565b83811115614a2a576000848401525b50505050565b60006002820490506001821680614a4857607f821691505b60208210811415614a5c57614a5b614b6b565b5b50919050565b614a6b82614bc9565b810181811067ffffffffffffffff82111715614a8a57614a89614b9a565b5b80604052505050565b6000614a9e826149e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ad157614ad0614b0d565b5b600182019050919050565b6000614ae7826149e4565b9150614af2836149e4565b925082614b0257614b01614b3c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f466c79696e67466f726d6174696f6e733a20557365722068617320616c72656160008201527f647920626f75676874206f6e65204e4654000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2072656465656d2077696e646f772060008201527f6861732065787069726564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f466c79696e67466f726d6174696f6e733a20696e73756666696369656e74206660008201527f756e64732073656e742c20706c6561736520636865636b2063757272656e742060208201527f7072696365000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2072656465656d206973206375727260008201527f656e746c79206e6f7420656e61626c6564000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f466c79696e67466f726d6174696f6e733a204163636f756e74206973206e6f7460008201527f20616e20454f4100000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f466c79696e67466f726d6174696f6e733a20666f6f7462616c6c5465616d576160008201527f6c6c6574206661696c656420746f207265636569766500000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2061756374696f6e20686173206e6f60008201527f7420737461727465640000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f466c79696e67466f726d6174696f6e733a206475636b7357616c6c657420666160008201527f696c656420746f20726563656976650000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a206469766973696f6e537457616c6c60008201527f6574206661696c656420746f2072656365697665000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a20746f6b656e2068617320616c726560008201527f616479206265656e65642072656465656d656400000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2063616c6c6572206973206e6f742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a20696e76616c696420746f6b656e4960008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b61553181614968565b811461553c57600080fd5b50565b6155488161497a565b811461555357600080fd5b50565b61555f8161498c565b811461556a57600080fd5b50565b61557681614998565b811461558157600080fd5b50565b61558d816149e4565b811461559857600080fd5b5056fea2646970667358221220f3302b0c37ff29613000f2d9f605d7b2c133bb664f5dfd00a5140391bc50e13b64736f6c6343000804003300000000000000000000000000000000000000000000000000000000621281a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001a003ae61b44a3ed1fafbf8549856a4da9c7312e0000000000000000000000007afa12a8708c7069cde17d4d3c90f01aa665379700000000000000000000000015b7f743e2bcba33320e26d145d7628149d733370000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576573705746414650355a347671793435775259786771564474653145447643756d56745954616f6133375a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e584c596b476d663238746b71655741397a36354655663165727842653772437778417a3538394d514c57352f00000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000e4bbcbff51e61d0d95fcc5016609ac8354b177c4000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe70000000000000000000000000000000000000000000000000000000000000055000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe70000000000000000000000000000000000000000000000000000000000000059000000000000000000000000689717c0b1ab0f188235cfa487ced32feebf96980000000000000000000000000000000000000000000000000000000000000017000000000000000000000000bd40ad5c8f59d140869504a55295ae650078fc4100000000000000000000000000000000000000000000000000000000000000750000000000000000000000002b5ac9107e0ffadcb5fa9bc9aaf42c9094693d470000000000000000000000000000000000000000000000000000000000000076000000000000000000000000cd21d7cb36f0bd063c99b9fc7565335fa24029d50000000000000000000000000000000000000000000000000000000000000077000000000000000000000000a8bad4743bbdd8817d0042f82e350c29b728ec72000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000009094b9de66790e0a5ab0e3299d38afb037be458b000000000000000000000000000000000000000000000000000000000000005400000000000000000000000054c1316c11ee8086bdcf051680025f61c276e58a000000000000000000000000000000000000000000000000000000000000006f
Deployed Bytecode
0x6080604052600436106101f85760003560e01c80637cb5f6781161010d578063b88d4fde116100a0578063db006a751161006f578063db006a751461071d578063e985e9c514610746578063f2fde38b14610783578063f74025cf146107ac578063f77f0b99146107e9576101f8565b8063b88d4fde14610672578063c87b56dd1461069b578063cce7ec13146106d8578063d287f619146106f4576101f8565b806398d5fdca116100dc57806398d5fdca146105cc578063a22cb465146105f7578063ab3b8a7114610620578063b6ff8b2514610649576101f8565b80637cb5f678146105245780638da5cb5b1461054d578063931688cb1461057857806395d89b41146105a1576101f8565b80632a5c792a116101905780635c975abb1161015f5780635c975abb1461043f5780635dd7b59d1461046a5780636352211e1461049357806370a08231146104d0578063715018a61461050d576101f8565b80632a5c792a146103715780632f745c591461039c57806342842e0e146103d95780634f6ccce714610402576101f8565b806308cdc2a8116101cc57806308cdc2a8146102cb578063095ea7b3146102f457806318160ddd1461031d57806323b872dd14610348576101f8565b8062f69f8f146101fd57806301ffc9a71461022657806306fdde0314610263578063081812fc1461028e575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f9190613a4f565b610812565b005b34801561023257600080fd5b5061024d60048036038101906102489190613a78565b6108ab565b60405161025a919061427f565b60405180910390f35b34801561026f57600080fd5b50610278610925565b604051610285919061429a565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b09190613b0f565b6109b7565b6040516102c291906141f6565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613a4f565b610a3c565b005b34801561030057600080fd5b5061031b60048036038101906103169190613a13565b610ad7565b005b34801561032957600080fd5b50610332610bef565b60405161033f91906146bc565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061390d565b610bfc565b005b34801561037d57600080fd5b50610386610c5c565b604051610393919061425d565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613a13565b610d52565b6040516103d091906146bc565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061390d565b610df7565b005b34801561040e57600080fd5b5061042960048036038101906104249190613b0f565b610e17565b60405161043691906146bc565b60405180910390f35b34801561044b57600080fd5b50610454610eae565b604051610461919061427f565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190613b0f565b610ec5565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613b0f565b610f4b565b6040516104c791906141f6565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f2919061387f565b610ffd565b60405161050491906146bc565b60405180910390f35b34801561051957600080fd5b506105226110b5565b005b34801561053057600080fd5b5061054b600480360381019061054691906138a8565b61113d565b005b34801561055957600080fd5b506105626111fd565b60405161056f91906141f6565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613aca565b611227565b005b3480156105ad57600080fd5b506105b66112b9565b6040516105c3919061429a565b60405180910390f35b3480156105d857600080fd5b506105e161134b565b6040516105ee91906146bc565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906139d7565b611557565b005b34801561062c57600080fd5b5061064760048036038101906106429190613a4f565b61156d565b005b34801561065557600080fd5b50610670600480360381019061066b91906138a8565b611606565b005b34801561067e57600080fd5b506106996004803603810190610694919061395c565b6116c6565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613b0f565b611728565b6040516106cf919061429a565b60405180910390f35b6106f260048036038101906106ed9190613a13565b611857565b005b34801561070057600080fd5b5061071b60048036038101906107169190613aca565b611dcf565b005b34801561072957600080fd5b50610744600480360381019061073f9190613b0f565b611e61565b005b34801561075257600080fd5b5061076d600480360381019061076891906138d1565b6120ae565b60405161077a919061427f565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a5919061387f565b612142565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190613b0f565b61223a565b6040516107e091906141f6565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b91906138a8565b61226d565b005b61081a612332565b73ffffffffffffffffffffffffffffffffffffffff166108386111fd565b73ffffffffffffffffffffffffffffffffffffffff161461088e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108859061451c565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e575061091d8261233a565b5b9050919050565b60606000805461093490614a30565b80601f016020809104026020016040519081016040528092919081815260200182805461096090614a30565b80156109ad5780601f10610982576101008083540402835291602001916109ad565b820191906000526020600020905b81548152906001019060200180831161099057829003601f168201915b5050505050905090565b60006109c28261241c565b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906144dc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a44612332565b73ffffffffffffffffffffffffffffffffffffffff16610a626111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061451c565b60405180910390fd5b8015610acb57610ac6612488565b610ad4565b610ad361252b565b5b50565b6000610ae282610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a906145bc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b72612332565b73ffffffffffffffffffffffffffffffffffffffff161480610ba15750610ba081610b9b612332565b6120ae565b5b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061443c565b60405180910390fd5b610bea83836125cd565b505050565b6000600880549050905090565b610c0d610c07612332565b82612686565b610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906145fc565b60405180910390fd5b610c57838383612764565b505050565b60606000610c68610bef565b905060008167ffffffffffffffff811115610cac577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cda5781602001602082028036833780820191505090505b50905060005b82811015610d4957610cf181610e17565b828281518110610d2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d4190614a93565b915050610ce0565b50809250505090565b6000610d5d83610ffd565b8210610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906142fc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e12838383604051806020016040528060008152506116c6565b505050565b6000610e21610bef565b8210610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e599061463c565b60405180910390fd5b60088281548110610e9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600a60149054906101000a900460ff16905090565b610ecd612332565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061451c565b60405180910390fd5b80600c8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb9061447c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110659061445c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110bd612332565b73ffffffffffffffffffffffffffffffffffffffff166110db6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061451c565b60405180910390fd5b61113b60006129c0565b565b611145612332565b73ffffffffffffffffffffffffffffffffffffffff166111636111fd565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b09061451c565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122f612332565b73ffffffffffffffffffffffffffffffffffffffff1661124d6111fd565b73ffffffffffffffffffffffffffffffffffffffff16146112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a9061451c565b60405180910390fd5b8181600f91906112b49291906136ac565b505050565b6060600180546112c890614a30565b80601f01602080910402602001604051908101604052809291908181526020018280546112f490614a30565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b5050505050905090565b6000600c54421015611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061459c565b60405180910390fd5b6000600c54426113a29190614934565b9050610e1060036113b391906148da565b81101561145f57611457611428610e1060036113cf91906148da565b670de0b6b3a764000060056113e491906148da565b600a670de0b6b3a7640000607d6113fb91906148da565b61140591906148a9565b61140f9190614934565b61141991906148a9565b83612a8690919063ffffffff16565b600a670de0b6b3a7640000607d61143f91906148da565b61144991906148a9565b612a9c90919063ffffffff16565b915050611554565b610e10600961146e91906148da565b610e10600361147d91906148da565b6114879190614853565b81101561153b57611533611510610e1060096114a391906148da565b670de0b6b3a764000060016114b891906148da565b670de0b6b3a764000060056114cd91906148da565b6114d79190614934565b6114e191906148a9565b611502610e1060036114f391906148da565b85612a9c90919063ffffffff16565b612a8690919063ffffffff16565b670de0b6b3a7640000600561152591906148da565b612a9c90919063ffffffff16565b915050611554565b670de0b6b3a7640000600161155091906148da565b9150505b90565b611569611562612332565b8383612ab2565b5050565b611575612332565b73ffffffffffffffffffffffffffffffffffffffff166115936111fd565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e09061451c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b61160e612332565b73ffffffffffffffffffffffffffffffffffffffff1661162c6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116799061451c565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116d76116d1612332565b83612686565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906145fc565b60405180910390fd5b61172284848484612c1f565b50505050565b60606117338261241c565b611772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117699061457c565b60405180910390fd5b600d60019054906101000a900460ff16806117ed5750600073ffffffffffffffffffffffffffffffffffffffff166010600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561182457600f6117fd83612c7b565b60405160200161180e9291906141b2565b6040516020818303038152906040529050611852565b600e61182f83612c7b565b6040516020016118409291906141b2565b60405160208183030381529060405290505b919050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906142bc565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611949906144fc565b60405180910390fd5b600c54421015611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e9061459c565b60405180910390fd5b607881111580156119a85750600081115b6119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061469c565b60405180910390fd5b60006119f161134b565b905080341015611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d9061441c565b60405180910390fd5b611a408383612e28565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000611ac3612710611ab5611a5e34612a8690919063ffffffff16565b612ff690919063ffffffff16565b90506000611af0612710611ae26103e834612a8690919063ffffffff16565b612ff690919063ffffffff16565b90506000611b1982611b0b8534612a9c90919063ffffffff16565b612a9c90919063ffffffff16565b90506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1684604051611b63906141e1565b60006040518083038185875af1925050503d8060008114611ba0576040519150601f19603f3d011682016040523d82523d6000602084013e611ba5565b606091505b5050905080611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be09061453c565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611c2f906141e1565b60006040518083038185875af1925050503d8060008114611c6c576040519150601f19603f3d011682016040523d82523d6000602084013e611c71565b606091505b50508091505080611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae906145dc565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611cfd906141e1565b60006040518083038185875af1925050503d8060008114611d3a576040519150601f19603f3d011682016040523d82523d6000602084013e611d3f565b606091505b50508091505080611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c9061461c565b60405180910390fd5b7f4689c69f82cdf5b000bb00a84dd3258356c9997272fd94a9153e9d13a5b7c29a868887878787604051611dbe96959493929190614700565b60405180910390a150505050505050565b611dd7612332565b73ffffffffffffffffffffffffffffffffffffffff16611df56111fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e429061451c565b60405180910390fd5b8181600e9190611e5c9291906136ac565b505050565b600d60009054906101000a900460ff16611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea79061449c565b60405180910390fd5b600d60019054906101000a900460ff1615611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef7906143dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f999061465c565b60405180910390fd5b611fab81610f4b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f9061467c565b60405180910390fd5b61202181610f4b565b6010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fccdaa2011001a11fd94d2cca01f6c5d72faf271d651024e5921864015d2f179a81336040516120a39291906146d7565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214a612332565b73ffffffffffffffffffffffffffffffffffffffff166121686111fd565b73ffffffffffffffffffffffffffffffffffffffff16146121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b59061451c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122259061433c565b60405180910390fd5b612237816129c0565b50565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612275612332565b73ffffffffffffffffffffffffffffffffffffffff166122936111fd565b73ffffffffffffffffffffffffffffffffffffffff16146122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e09061451c565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061240557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061241557506124148261300c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612490610eae565b156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906143fc565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612514612332565b60405161252191906141f6565b60405180910390a1565b612533610eae565b612572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612569906142dc565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125b6612332565b6040516125c391906141f6565b60405180910390a1565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264083610f4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126918261241c565b6126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c7906143bc565b60405180910390fd5b60006126db83610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274a57508373ffffffffffffffffffffffffffffffffffffffff16612732846109b7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061275b575061275a81856120ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278482610f4b565b73ffffffffffffffffffffffffffffffffffffffff16146127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d19061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128419061437c565b60405180910390fd5b612855838383613076565b6128606000826125cd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b09190614934565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129079190614853565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612a9491906148da565b905092915050565b60008183612aaa9190614934565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b189061439c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c12919061427f565b60405180910390a3505050565b612c2a848484612764565b612c368484848461318a565b612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c9061431c565b60405180910390fd5b50505050565b60606000821415612cc3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e23565b600082905060005b60008214612cf5578080612cde90614a93565b915050600a82612cee91906148a9565b9150612ccb565b60008167ffffffffffffffff811115612d37577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d695781602001600182028036833780820191505090505b5090505b60008514612e1c57600182612d829190614934565b9150600a85612d919190614adc565b6030612d9d9190614853565b60f81b818381518110612dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e1591906148a9565b9450612d6d565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8f906144bc565b60405180910390fd5b612ea18161241c565b15612ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed89061435c565b60405180910390fd5b612eed60008383613076565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3d9190614853565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000818361300491906148a9565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61308183838361232d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130c4576130bf81613321565b613103565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461310257613101838261336a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561314657613141816134d7565b613185565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461318457613183828261361a565b5b5b505050565b60006131ab8473ffffffffffffffffffffffffffffffffffffffff16613699565b15613314578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131d4612332565b8786866040518563ffffffff1660e01b81526004016131f69493929190614211565b602060405180830381600087803b15801561321057600080fd5b505af192505050801561324157506040513d601f19601f8201168201806040525081019061323e9190613aa1565b60015b6132c4573d8060008114613271576040519150601f19603f3d011682016040523d82523d6000602084013e613276565b606091505b506000815114156132bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b39061431c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613319565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161337784610ffd565b6133819190614934565b9050600060076000848152602001908152602001600020549050818114613466576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134eb9190614934565b9050600060096000848152602001908152602001600020549050600060088381548110613541577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613589577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061362583610ffd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546136b890614a30565b90600052602060002090601f0160209004810192826136da5760008555613721565b82601f106136f357803560ff1916838001178555613721565b82800160010185558215613721579182015b82811115613720578235825591602001919060010190613705565b5b50905061372e9190613732565b5090565b5b8082111561374b576000816000905550600101613733565b5090565b600061376261375d84614786565b614761565b90508281526020810184848401111561377a57600080fd5b6137858482856149ee565b509392505050565b60008135905061379c81615528565b92915050565b6000813590506137b18161553f565b92915050565b6000813590506137c681615556565b92915050565b6000813590506137db8161556d565b92915050565b6000815190506137f08161556d565b92915050565b600082601f83011261380757600080fd5b813561381784826020860161374f565b91505092915050565b60008083601f84011261383257600080fd5b8235905067ffffffffffffffff81111561384b57600080fd5b60208301915083600182028301111561386357600080fd5b9250929050565b60008135905061387981615584565b92915050565b60006020828403121561389157600080fd5b600061389f8482850161378d565b91505092915050565b6000602082840312156138ba57600080fd5b60006138c8848285016137a2565b91505092915050565b600080604083850312156138e457600080fd5b60006138f28582860161378d565b92505060206139038582860161378d565b9150509250929050565b60008060006060848603121561392257600080fd5b60006139308682870161378d565b93505060206139418682870161378d565b92505060406139528682870161386a565b9150509250925092565b6000806000806080858703121561397257600080fd5b60006139808782880161378d565b94505060206139918782880161378d565b93505060406139a28782880161386a565b925050606085013567ffffffffffffffff8111156139bf57600080fd5b6139cb878288016137f6565b91505092959194509250565b600080604083850312156139ea57600080fd5b60006139f88582860161378d565b9250506020613a09858286016137b7565b9150509250929050565b60008060408385031215613a2657600080fd5b6000613a348582860161378d565b9250506020613a458582860161386a565b9150509250929050565b600060208284031215613a6157600080fd5b6000613a6f848285016137b7565b91505092915050565b600060208284031215613a8a57600080fd5b6000613a98848285016137cc565b91505092915050565b600060208284031215613ab357600080fd5b6000613ac1848285016137e1565b91505092915050565b60008060208385031215613add57600080fd5b600083013567ffffffffffffffff811115613af757600080fd5b613b0385828601613820565b92509250509250929050565b600060208284031215613b2157600080fd5b6000613b2f8482850161386a565b91505092915050565b6000613b448383614194565b60208301905092915050565b613b5981614968565b82525050565b6000613b6a826147dc565b613b74818561480a565b9350613b7f836147b7565b8060005b83811015613bb0578151613b978882613b38565b9750613ba2836147fd565b925050600181019050613b83565b5085935050505092915050565b613bc68161498c565b82525050565b6000613bd7826147e7565b613be1818561481b565b9350613bf18185602086016149fd565b613bfa81614bc9565b840191505092915050565b6000613c10826147f2565b613c1a8185614837565b9350613c2a8185602086016149fd565b613c3381614bc9565b840191505092915050565b6000613c49826147f2565b613c538185614848565b9350613c638185602086016149fd565b80840191505092915050565b60008154613c7c81614a30565b613c868186614848565b94506001821660008114613ca15760018114613cb257613ce5565b60ff19831686528186019350613ce5565b613cbb856147c7565b60005b83811015613cdd57815481890152600182019150602081019050613cbe565b838801955050505b50505092915050565b6000613cfb603183614837565b9150613d0682614bda565b604082019050919050565b6000613d1e601483614837565b9150613d2982614c29565b602082019050919050565b6000613d41602b83614837565b9150613d4c82614c52565b604082019050919050565b6000613d64603283614837565b9150613d6f82614ca1565b604082019050919050565b6000613d87602683614837565b9150613d9282614cf0565b604082019050919050565b6000613daa601c83614837565b9150613db582614d3f565b602082019050919050565b6000613dcd602483614837565b9150613dd882614d68565b604082019050919050565b6000613df0601983614837565b9150613dfb82614db7565b602082019050919050565b6000613e13602c83614837565b9150613e1e82614de0565b604082019050919050565b6000613e36602b83614837565b9150613e4182614e2f565b604082019050919050565b6000613e59601083614837565b9150613e6482614e7e565b602082019050919050565b6000613e7c604583614837565b9150613e8782614ea7565b606082019050919050565b6000613e9f603883614837565b9150613eaa82614f1c565b604082019050919050565b6000613ec2602a83614837565b9150613ecd82614f6b565b604082019050919050565b6000613ee5602983614837565b9150613ef082614fba565b604082019050919050565b6000613f08603183614837565b9150613f1382615009565b604082019050919050565b6000613f2b602083614837565b9150613f3682615058565b602082019050919050565b6000613f4e602c83614837565b9150613f5982615081565b604082019050919050565b6000613f71600583614848565b9150613f7c826150d0565b600582019050919050565b6000613f94602783614837565b9150613f9f826150f9565b604082019050919050565b6000613fb7602083614837565b9150613fc282615148565b602082019050919050565b6000613fda603683614837565b9150613fe582615171565b604082019050919050565b6000613ffd602983614837565b9150614008826151c0565b604082019050919050565b6000614020602f83614837565b915061402b8261520f565b604082019050919050565b6000614043602983614837565b915061404e8261525e565b604082019050919050565b6000614066602183614837565b9150614071826152ad565b604082019050919050565b600061408960008361482c565b9150614094826152fc565b600082019050919050565b60006140ac602f83614837565b91506140b7826152ff565b604082019050919050565b60006140cf603183614837565b91506140da8261534e565b604082019050919050565b60006140f2603483614837565b91506140fd8261539d565b604082019050919050565b6000614115602c83614837565b9150614120826153ec565b604082019050919050565b6000614138603383614837565b91506141438261543b565b604082019050919050565b600061415b602583614837565b91506141668261548a565b604082019050919050565b600061417e602183614837565b9150614189826154d9565b604082019050919050565b61419d816149e4565b82525050565b6141ac816149e4565b82525050565b60006141be8285613c6f565b91506141ca8284613c3e565b91506141d582613f64565b91508190509392505050565b60006141ec8261407c565b9150819050919050565b600060208201905061420b6000830184613b50565b92915050565b60006080820190506142266000830187613b50565b6142336020830186613b50565b61424060408301856141a3565b81810360608301526142528184613bcc565b905095945050505050565b600060208201905081810360008301526142778184613b5f565b905092915050565b60006020820190506142946000830184613bbd565b92915050565b600060208201905081810360008301526142b48184613c05565b905092915050565b600060208201905081810360008301526142d581613cee565b9050919050565b600060208201905081810360008301526142f581613d11565b9050919050565b6000602082019050818103600083015261431581613d34565b9050919050565b6000602082019050818103600083015261433581613d57565b9050919050565b6000602082019050818103600083015261435581613d7a565b9050919050565b6000602082019050818103600083015261437581613d9d565b9050919050565b6000602082019050818103600083015261439581613dc0565b9050919050565b600060208201905081810360008301526143b581613de3565b9050919050565b600060208201905081810360008301526143d581613e06565b9050919050565b600060208201905081810360008301526143f581613e29565b9050919050565b6000602082019050818103600083015261441581613e4c565b9050919050565b6000602082019050818103600083015261443581613e6f565b9050919050565b6000602082019050818103600083015261445581613e92565b9050919050565b6000602082019050818103600083015261447581613eb5565b9050919050565b6000602082019050818103600083015261449581613ed8565b9050919050565b600060208201905081810360008301526144b581613efb565b9050919050565b600060208201905081810360008301526144d581613f1e565b9050919050565b600060208201905081810360008301526144f581613f41565b9050919050565b6000602082019050818103600083015261451581613f87565b9050919050565b6000602082019050818103600083015261453581613faa565b9050919050565b6000602082019050818103600083015261455581613fcd565b9050919050565b6000602082019050818103600083015261457581613ff0565b9050919050565b6000602082019050818103600083015261459581614013565b9050919050565b600060208201905081810360008301526145b581614036565b9050919050565b600060208201905081810360008301526145d581614059565b9050919050565b600060208201905081810360008301526145f58161409f565b9050919050565b60006020820190508181036000830152614615816140c2565b9050919050565b60006020820190508181036000830152614635816140e5565b9050919050565b6000602082019050818103600083015261465581614108565b9050919050565b600060208201905081810360008301526146758161412b565b9050919050565b600060208201905081810360008301526146958161414e565b9050919050565b600060208201905081810360008301526146b581614171565b9050919050565b60006020820190506146d160008301846141a3565b92915050565b60006040820190506146ec60008301856141a3565b6146f96020830184613b50565b9392505050565b600060c08201905061471560008301896141a3565b6147226020830188613b50565b61472f60408301876141a3565b61473c60608301866141a3565b61474960808301856141a3565b61475660a08301846141a3565b979650505050505050565b600061476b61477c565b90506147778282614a62565b919050565b6000604051905090565b600067ffffffffffffffff8211156147a1576147a0614b9a565b5b6147aa82614bc9565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061485e826149e4565b9150614869836149e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b0d565b5b828201905092915050565b60006148b4826149e4565b91506148bf836149e4565b9250826148cf576148ce614b3c565b5b828204905092915050565b60006148e5826149e4565b91506148f0836149e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b0d565b5b828202905092915050565b600061493f826149e4565b915061494a836149e4565b92508282101561495d5761495c614b0d565b5b828203905092915050565b6000614973826149c4565b9050919050565b6000614985826149c4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a1b578082015181840152602081019050614a00565b83811115614a2a576000848401525b50505050565b60006002820490506001821680614a4857607f821691505b60208210811415614a5c57614a5b614b6b565b5b50919050565b614a6b82614bc9565b810181811067ffffffffffffffff82111715614a8a57614a89614b9a565b5b80604052505050565b6000614a9e826149e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ad157614ad0614b0d565b5b600182019050919050565b6000614ae7826149e4565b9150614af2836149e4565b925082614b0257614b01614b3c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f466c79696e67466f726d6174696f6e733a20557365722068617320616c72656160008201527f647920626f75676874206f6e65204e4654000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2072656465656d2077696e646f772060008201527f6861732065787069726564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f466c79696e67466f726d6174696f6e733a20696e73756666696369656e74206660008201527f756e64732073656e742c20706c6561736520636865636b2063757272656e742060208201527f7072696365000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2072656465656d206973206375727260008201527f656e746c79206e6f7420656e61626c6564000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f466c79696e67466f726d6174696f6e733a204163636f756e74206973206e6f7460008201527f20616e20454f4100000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f466c79696e67466f726d6174696f6e733a20666f6f7462616c6c5465616d576160008201527f6c6c6574206661696c656420746f207265636569766500000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2061756374696f6e20686173206e6f60008201527f7420737461727465640000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f466c79696e67466f726d6174696f6e733a206475636b7357616c6c657420666160008201527f696c656420746f20726563656976650000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a206469766973696f6e537457616c6c60008201527f6574206661696c656420746f2072656365697665000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a20746f6b656e2068617320616c726560008201527f616479206265656e65642072656465656d656400000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a2063616c6c6572206973206e6f742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f466c79696e67466f726d6174696f6e733a20696e76616c696420746f6b656e4960008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b61553181614968565b811461553c57600080fd5b50565b6155488161497a565b811461555357600080fd5b50565b61555f8161498c565b811461556a57600080fd5b50565b61557681614998565b811461558157600080fd5b50565b61558d816149e4565b811461559857600080fd5b5056fea2646970667358221220f3302b0c37ff29613000f2d9f605d7b2c133bb664f5dfd00a5140391bc50e13b64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000621281a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001a003ae61b44a3ed1fafbf8549856a4da9c7312e0000000000000000000000007afa12a8708c7069cde17d4d3c90f01aa665379700000000000000000000000015b7f743e2bcba33320e26d145d7628149d733370000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576573705746414650355a347671793435775259786771564474653145447643756d56745954616f6133375a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e584c596b476d663238746b71655741397a36354655663165727842653772437778417a3538394d514c57352f00000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000e4bbcbff51e61d0d95fcc5016609ac8354b177c4000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe70000000000000000000000000000000000000000000000000000000000000055000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe70000000000000000000000000000000000000000000000000000000000000059000000000000000000000000689717c0b1ab0f188235cfa487ced32feebf96980000000000000000000000000000000000000000000000000000000000000017000000000000000000000000bd40ad5c8f59d140869504a55295ae650078fc4100000000000000000000000000000000000000000000000000000000000000750000000000000000000000002b5ac9107e0ffadcb5fa9bc9aaf42c9094693d470000000000000000000000000000000000000000000000000000000000000076000000000000000000000000cd21d7cb36f0bd063c99b9fc7565335fa24029d50000000000000000000000000000000000000000000000000000000000000077000000000000000000000000a8bad4743bbdd8817d0042f82e350c29b728ec72000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000009094b9de66790e0a5ab0e3299d38afb037be458b000000000000000000000000000000000000000000000000000000000000005400000000000000000000000054c1316c11ee8086bdcf051680025f61c276e58a000000000000000000000000000000000000000000000000000000000000006f
-----Decoded View---------------
Arg [0] : _saleStartsAt (uint256): 1645380000
Arg [1] : _sneakerBaseURI (string): ipfs://QmWespWFAFP5Z4vqy45wRYxgqVDte1EDvCumVtYTaoa37Z/
Arg [2] : _standardBaseURI (string): ipfs://QmNXLYkGmf28tkqeWA9z65FUf1erxBe7rCwxAz589MQLW5/
Arg [3] : premintEntries (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [4] : _footballTeamWallet (address): 0x1a003aE61B44A3eD1fAfBf8549856a4Da9c7312E
Arg [5] : _ducksWallet (address): 0x7afa12A8708C7069Cde17d4D3c90f01AA6653797
Arg [6] : _divisionStWallet (address): 0x15b7f743e2bcBA33320e26d145D7628149D73337
-----Encoded View---------------
34 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000621281a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000001a003ae61b44a3ed1fafbf8549856a4da9c7312e
Arg [5] : 0000000000000000000000007afa12a8708c7069cde17d4d3c90f01aa6653797
Arg [6] : 00000000000000000000000015b7f743e2bcba33320e26d145d7628149d73337
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d576573705746414650355a347671793435775259786771
Arg [9] : 564474653145447643756d56745954616f6133375a2f00000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d4e584c596b476d663238746b71655741397a3635465566
Arg [12] : 3165727842653772437778417a3538394d514c57352f00000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [14] : 000000000000000000000000e4bbcbff51e61d0d95fcc5016609ac8354b177c4
Arg [15] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [16] : 000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe7
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [18] : 000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe7
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [20] : 000000000000000000000000689717c0b1ab0f188235cfa487ced32feebf9698
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [22] : 000000000000000000000000bd40ad5c8f59d140869504a55295ae650078fc41
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000075
Arg [24] : 0000000000000000000000002b5ac9107e0ffadcb5fa9bc9aaf42c9094693d47
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000076
Arg [26] : 000000000000000000000000cd21d7cb36f0bd063c99b9fc7565335fa24029d5
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000077
Arg [28] : 000000000000000000000000a8bad4743bbdd8817d0042f82e350c29b728ec72
Arg [29] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [30] : 0000000000000000000000009094b9de66790e0a5ab0e3299d38afb037be458b
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [32] : 00000000000000000000000054c1316c11ee8086bdcf051680025f61c276e58a
Arg [33] : 000000000000000000000000000000000000000000000000000000000000006f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.