ETH Price: $2,689.72 (+1.00%)

Token

The Vampire Game (VGAME)
 

Overview

Max Total Supply

1,822 VGAME

Holders

656

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 VGAME
0x0df94c55cf9c7eff61dff88f1e46f84842f8d6c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VampireGame

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 25 : VampireGame.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Arrays.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";
import "./allowlist/AllowList.sol";
import "./traits/TokenTraits.sol";
import "./traits/ITraits.sol";
import "./IVampireGame.sol";
/// @title The Vampire Game NFT contract
///
/// Note: The original Wolf Game's contract was used as insipiration, and a
/// few parts of the contract were taken directly, in particular the trait selection
/// and rarity using Walker's Alias method, and using a separate `Traits` contract
/// for getting the tokenURI.
///
/// Some info about how this contract works:
///
/// ### Allow-list
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 25 : IERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 25 : ERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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;
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 25 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 25 : ReentrancyGuard.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 25 : Arrays.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev Collection of functions related to array types.
*/
library Arrays {
/**
* @dev Searches a sorted `array` and returns the first index that contains
* a value greater or equal to `element`. If no such index exists (i.e. all
* values in the array are strictly less than `element`), the array length is
* returned. Time complexity O(log n).
*
* `array` is expected to be sorted in ascending order, and to contain no
* repeated elements.
*/
function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
if (array.length == 0) {
return 0;
}
uint256 low = 0;
uint256 high = array.length;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 25 : VRFConsumerBase.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./interfaces/LinkTokenInterface.sol";
import "./VRFRequestIDBase.sol";
/** ****************************************************************************
* @notice Interface for contracts using VRF randomness
* *****************************************************************************
* @dev PURPOSE
*
* @dev Reggie the Random Oracle (not his real job) wants to provide randomness
* @dev to Vera the verifier in such a way that Vera can be sure he's not
* @dev making his output up to suit himself. Reggie provides Vera a public key
* @dev to which he knows the secret key. Each time Vera provides a seed to
* @dev Reggie, he gives back a value which is computed completely
* @dev deterministically from the seed and the secret key.
*
* @dev Reggie provides a proof by which Vera can verify that the output was
* @dev correctly computed once Reggie tells it to her, but without that proof,
* @dev the output is indistinguishable to her from a uniform random sample
* @dev from the output space.
*
* @dev The purpose of this contract is to make it easy for unrelated contracts
* @dev to talk to Vera the verifier about the work Reggie is doing, to provide
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 25 : AllowList.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
/// @title AllowList
/// @notice Adds simple merkle-tree based allow-list functionality to a contract.
contract AllowList {
/// @notice stores the Merkle Tree root.
bytes32 internal _merkleTreeRoot;
/// @notice Sets the new merkle tree root
/// @param newMerkleTreeRoot the new root of the merkle tree
function _setMerkleTreeRoot(bytes32 newMerkleTreeRoot) internal {
require(_merkleTreeRoot != newMerkleTreeRoot, "NO_CHANGES");
_merkleTreeRoot = newMerkleTreeRoot;
}
/// @notice test if an address is part of the merkle tree
/// @param _address the address to verify
/// @param proof array of other hashes for proof calculation
/// @return true if the address is part of the merkle tree
function isAddressInAllowList(address _address, bytes32[] calldata proof)
public
view
returns (bool)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 25 : TokenTraits.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
struct TokenTraits {
/// @dev every initialised token should have this as true
/// this is just used to check agains a non-initialized struct
bool exists;
bool isVampire;
// Shared Traits
uint8 skin;
uint8 face;
uint8 clothes;
// Human-only Traits
uint8 pants;
uint8 boots;
uint8 accessory;
uint8 hair;
// Vampire-only Traits
uint8 cape;
uint8 predatorIndex;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 25 : ITraits.sol
1
2
3
4
5
6
7
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
interface ITraits {
function tokenURI(uint256 tokenId) external view returns (string memory);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 25 : IVampireGame.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
import "./traits/TokenTraits.sol";
/// @notice Interface to interact with the VampireGame contract
interface IVampireGame {
/// @notice get the total supply of gen-0
function getGenZeroSupply() external view returns (uint256);
/// @notice get the total supply of tokens
function getMaxSupply() external view returns (uint256);
/// @notice get the TokenTraits for a given tokenId
function getTokenTraits(uint256 tokenId) external view returns (TokenTraits memory);
/// @notice returns true if a token is aleady revealed
function isTokenRevealed(uint256 tokenId) external view returns (bool);
}
/// @notice Interface to control parts of the VampireGame ERC 721
interface IVampireGameControls {
/// @notice mint any amount of nft to any address
/// Requirements:
/// - message sender should be an allowed address (game contract)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 25 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 25 : IERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 25 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 25 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 25 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 25 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 25 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: MIT
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;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 25 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 20 of 25 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 21 of 25 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 22 of 25 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 23 of 25 : LinkTokenInterface.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface LinkTokenInterface {
function allowance(
address owner,
address spender
)
external
view
returns (
uint256 remaining
);
function approve(
address spender,
uint256 value
)
external
returns (
bool success
);
function balanceOf(
address owner
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 24 of 25 : VRFRequestIDBase.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract VRFRequestIDBase {
/**
* @notice returns the seed which is actually input to the VRF coordinator
*
* @dev To prevent repetition of VRF output due to repetition of the
* @dev user-supplied seed, that seed is combined in a hash with the
* @dev user-specific nonce, and the address of the consuming contract. The
* @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
* @dev the final seed, but the nonce does protect against repetition in
* @dev requests which are included in a single block.
*
* @param _userSeed VRF seed input provided by user
* @param _requester Address of the requesting contract
* @param _nonce User-specific nonce at the time of the request
*/
function makeVRFInputSeed(
bytes32 _keyHash,
uint256 _userSeed,
address _requester,
uint256 _nonce
)
internal
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 25 of 25 : MerkleProof.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
bytes32 computedHash = leaf;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_LINK_KEY_HASH","type":"bytes32"},{"internalType":"address","name":"_LINK_ADDRESS","type":"address"},{"internalType":"address","name":"_LINK_VRF_COORDINATOR_ADDRESS","type":"address"},{"internalType":"uint256","name":"_LINK_VRF_PRICE","type":"uint256"},{"internalType":"uint256","name":"_MINT_PRICE","type":"uint256"},{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"},{"internalType":"uint256","name":"_MAX_PER_ADDRESS","type":"uint256"},{"internalType":"uint256","name":"_MAX_PER_ADDRESS_PRESALE","type":"uint256"},{"internalType":"uint256","name":"_SEED_BATCH_SIZE","type":"uint256"},{"internalType":"uint256","name":"_PAID_TOKENS","type":"uint256"},{"internalType":"address","name":"_splitter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ALIASES","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KEY_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LINK_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LINK_VRF_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"RARITIES","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEED_BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMintedByAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cleanSeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_seeds","type":"uint256[]"}],"name":"controllerRevealTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"controllers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"existingCombinations","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":"getGenZeroSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenTraits","outputs":[{"components":[{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"bool","name":"isVampire","type":"bool"},{"internalType":"uint8","name":"skin","type":"uint8"},{"internalType":"uint8","name":"face","type":"uint8"},{"internalType":"uint8","name":"clothes","type":"uint8"},{"internalType":"uint8","name":"pants","type":"uint8"},{"internalType":"uint8","name":"boots","type":"uint8"},{"internalType":"uint8","name":"accessory","type":"uint8"},{"internalType":"uint8","name":"hair","type":"uint8"},{"internalType":"uint8","name":"cape","type":"uint8"},{"internalType":"uint8","name":"predatorIndex","type":"uint8"}],"internalType":"struct TokenTraits","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isAddressInAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintFromController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFromControllerPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintWithETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWithETHPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintWithEthPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWithEthPresalePaused","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":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestRevealSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"revealGenZeroTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seedTokenBoundaries","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleTreeRoot","type":"bytes32"}],"name":"setMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setMintFromControllerPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setMintWithEthPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setMintWithEthPresalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PAID_TOKENS","type":"uint256"}],"name":"setPaidTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setRevealPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_traits","type":"address"}],"name":"setTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_LINK_VRF_PRICE","type":"uint256"}],"name":"setVRFPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"","type":"uint256"}],"name":"tokenTraits","outputs":[{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"bool","name":"isVampire","type":"bool"},{"internalType":"uint8","name":"skin","type":"uint8"},{"internalType":"uint8","name":"face","type":"uint8"},{"internalType":"uint8","name":"clothes","type":"uint8"},{"internalType":"uint8","name":"pants","type":"uint8"},{"internalType":"uint8","name":"boots","type":"uint8"},{"internalType":"uint8","name":"accessory","type":"uint8"},{"internalType":"uint8","name":"hair","type":"uint8"},{"internalType":"uint8","name":"cape","type":"uint8"},{"internalType":"uint8","name":"predatorIndex","type":"uint8"}],"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":[],"name":"traits","outputs":[{"internalType":"contract ITraits","name":"","type":"address"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20TokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101a06040526017805463ffffffff60a01b1916630101010160a01b1790553480156200002b57600080fd5b50604051620059ad380380620059ad8339810160408190526200004e9162001169565b604080518082018252601081526f5468652056616d706972652047616d6560801b6020808301918252835180850190945260058452645647414d4560d81b9084015281518c938e93929091620000a79160009162001003565b508051620000bd90600190602084019062001003565b505050620000da620000d462000fad60201b60201c565b62000fb1565b6001600c556001600160601b0319606092831b811660a090815291831b811660809081528d841b8216610160526101408f9052600e8c905560c08b905260e08a90526101008990526101208890526010879055600f86815585851b90921661018052604080519384018152603284526020840183905283019190915260fa9282019290925260ff918101919091526200017890601890600562001092565b506040805160a081018252600380825260046020830181905292820192909252600060608201526080810191909152620001b790602a90600562001092565b506040805161026081018252608580825260bd60208301819052603993830184905260ff606084015260f3608084015260a08301829052607260c08401819052608760e085015260a8610100850152602661012085015260de6101408501526101608401859052605f6101808501526101a0840185905260986101c08501526101e08401526102008301939093526102208201526102408101919091526200026490601990601362001092565b506040805161026081018252600180825260006020830152600392820183905260608201526080810182905260a0810182905260c0810191909152600460e082018190526007610100830152610120820181905260086101408301819052610160830191909152610180820152600a6101a082018190526101c082018190526101e082015260126102008201819052610220820152600e6102408201526200031190602b90601362001092565b50604080516103808101825260b5815260e06020820181905260939282019290925260ec606082015260dc608082015260a860a08083019190915260c0820152605482820181905260ad610100830152610120820183905260dd61014083015260fe610160830152608c610180830181905260fc6101a084018190526101c084019490945260fa6101e0840152606461020084015260cf61022084015261024083019190915261026082019290925260c46102808201526102a0810182905260e46102c08201526102e0810182905260ff61030082015260b761032082015260f16103408201526103608101919091526200041190601a90601c62001092565b506040805161038081018252600180825260006020830152600392820183905260608201526080810182905260a0810191909152600460c08201819052600b60e0830181905261010083018190526101208301919091526009610140830152600a610160830152600d61018083018190526101a08301919091526101c0820152600e6101e0820152600f6102008201819052610220820152601461024082018190526011610260830152601361028083015260186102a083018190526102c08301919091526102e082018190526016610300830152601a61032083018190526103408301919091526103608201526200050f90602c90601c62001092565b506040805161020081018252607e815260ab602082015260e18183015260f06060820181905260e36080830152607060a08084019190915260ff60c084015260e083019190915260d961010083015260506101208301819052610140830184905261016083019190915260e46101808301526101a08201526101c081019190915260a76101e0820152620005a890601b90601062001092565b506040805161020081018252600280825260006020830152600192820192909252606081019190915260036080820181905260a0820152600460c08201819052600660e0830181905260076101008401819052610120840192909252610140830152610160820152600861018082018190526101a0820152600f6101c0820152600c6101e08201526200064090602d90601062001092565b506040805160c0810182526096808252601e6020830152603c92820183905260ff6060830152608082015260a08101919091526200068390601c90600662001092565b506040805160c081018252600080825260036020830181905292820183905260608201526080810191909152600460a0820152620006c690602e90600662001092565b50604080516102808101825260d2815260876020820152605091810182905260f5606082015260eb6080820152606e60a08083019190915260c08201839052606460e0830181905260be610100840152610120830181905260ff61014084015261016083019190915260d76101808301526101a08201929092526101c0810182905260b96101e082015260fa61020082015260f061022082018190526102408201526102608101919091526200078190601d90601462001092565b506040805161028081018252600080825260208201819052600392820183905260608201526080810191909152600460a08201819052600a60c08301819052600c60e08401819052610100840192909252601061012084018190526008610140850152610160840181905261018084019190915260116101a0840181905260126101c085018190526101e0850193909352600f6102008501526102208401919091526102408301526102608201526200083f90602f90601462001092565b50604080516101408101825260fa81526073602082015260649181018290526028606082015260af6080820181905260ff60a083015260b460c083015260e082019290925261010081019190915260b9610120820152620008a590601e90600a62001092565b5060408051610140810182526000808252602082018190526004928201839052600660608301819052608083019190915260a0820192909252600560c0820152600960e082015261010081019190915260086101208201526200090d90603090600a62001092565b50604080516020810190915260ff81526200092d90601f90600162001092565b506040805160208101909152600081526200094d90603190600162001092565b5060408051602080820190925260ff81526200096c9190600162001092565b506040805160208101909152600081526200098c90603290600162001092565b50604080516101a08101825260ea80825260ef60208301529181018290526060810182905260ff608082015260a0810182905260f460c082015260f960e082015260826101008201526101208101829052610140810182905260f761016082015261018081019190915262000a0690602190600d62001092565b50604080516101a081018252600080825260208201526001918101919091526002606082015260036080820152600460a0820152600560c0820152600660e0820152600c61010082015260076101208201526009610140820152600a610160820152600b61018082015262000a8090603390600d62001092565b50604080516101e081018252602d80825260ff6020830181905260a593830193909352603c606083015260c36080830181905260a083015260c0820152607860e08201819052604b6101008301819052610120830152606961014083015261016082015261018081019190915260b46101a082015260966101c082015262000b0d90602290600f62001092565b50604080516101e081018252600180825260006020830152918101919091526004606082018190526002608083015260a0820152600560c08201819052600c60e083018190526101008301819052600d61012084018190526101408401819052600e6101608501526101808401929092526101a08301526101c082015262000b9a90603490600f62001092565b5060408051610360810182526093815260b4602082015260f69181019190915260c9606082015260d2608082015260fc60a082015260db60c082015260bd60e082015260c3610100820152609c61012082015260b161014082015260ab61016082015260a561018082015260e16101a082015260876101c082018190526101e0820181905260ba61020083015261022082018190526096610240830181905260f3610260840152610280830182905260ff6102a084015260e76102c0840152608d6102e084015260b761030084015261032083015261034082015262000c8590602390601b62001092565b5060408051610360810182526002808252602082018190526000928201929092526060810191909152600360808201819052600460a08301819052600560c08401819052600660e0850181905260076101008601526101208501849052610140850193909352610160840182905261018084019190915260086101a08401526101c08301526101e0820152600d610200820181905261022082015260136102408201819052601061026083015261028082018190526102a082015260156102c082018190526102e082018190526103008201819052610320820152601661034082015262000d7890603590601b62001092565b50604080516020810190915260ff815262000d9890602490600162001092565b5060408051602081019091526000815262000db890603690600162001092565b50604080516020810190915260ff815262000dd890602590600162001092565b5060408051602081019091526000815262000df890603790600162001092565b50604080516020810190915260ff815262000e1890602690600162001092565b5060408051602081019091526000815262000e3890603890600162001092565b50604080516020810190915260ff815262000e5890602790600162001092565b5060408051602081019091526000815262000e7890603990600162001092565b506040805161012081018252600980825260208201819052609692820192909252605a60608201526080810182905260d260a082015260c0810182905260e0810182905260ff61010082015262000ed3916028919062001092565b50604080516101208101825260058082526020820181905260009282019290925260026060820152600860808201819052600360a083015260c0820181905260e082015261010081019190915262000f3090603a90600962001092565b506040805160808101825260ff81526008602082015260a0918101919091526049606082015262000f6690602990600462001092565b5060408051608081018252600080825260208201819052918101919091526002606082015262000f9b90603b90600462001092565b50505050505050505050505062001241565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620010119062001204565b90600052602060002090601f01602090048101928262001035576000855562001080565b82601f106200105057805160ff191683800117855562001080565b8280016001018555821562001080579182015b828111156200108057825182559160200191906001019062001063565b506200108e92915062001135565b5090565b82805482825590600052602060002090601f01602090048101928215620010805791602002820160005b83821115620010fc57835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302620010bc565b80156200112b5782816101000a81549060ff0219169055600101602081600001049283019260010302620010fc565b50506200108e9291505b5b808211156200108e576000815560010162001136565b80516001600160a01b03811681146200116457600080fd5b919050565b60008060008060008060008060008060006101608c8e0312156200118c57600080fd5b8b519a506200119e60208d016200114c565b9950620011ae60408d016200114c565b985060608c0151975060808c0151965060a08c0151955060c08c0151945060e08c015193506101008c015192506101208c01519150620011f26101408d016200114c565b90509295989b509295989b9093969950565b600181811c908216806200121957607f821691505b602082108114156200123b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c60c05160e0516101005161012051610140516101605160601c6101805160601c6146b0620012fd600039600061139101526000610d4f01526000818161073d0152818161108d0152612df101526000818161051801526117a30152600081816104ac015261207a0152600081816105cc015281816106c70152611da8015260008181610a4101528181611896015261216d015260008181611ba801526128c30152600061289401526146b06000f3fe6080604052600436106103e45760003560e01c80638ff378ce11610208578063c6b7773f11610118578063e1860ce7116100ab578063eedac3a61161007a578063eedac3a614610d3d578063f0503e8014610d71578063f2fde38b14610d91578063f6a74ed714610db1578063fc1ea44314610dd157600080fd5b8063e1860ce714610c9e578063e1fc334f14610cbe578063e5956db714610cde578063e985e9c514610cf457600080fd5b8063da8c229e116100e7578063da8c229e14610b31578063dab8a58e14610b61578063dd6302ef14610b82578063e05c57bf14610ba257600080fd5b8063c6b7773f14610a8f578063c87b56dd14610ad1578063cc47a40b14610af1578063d6d6b9ec14610b1157600080fd5b8063a4a8be851161019b578063b88d4fde1161016a578063b88d4fde146109ef578063bf31201914610a0f578063c002d23d14610a2f578063c084f54014610a63578063c58bf0a314610a7957600080fd5b8063a4a8be851461096b578063a69956eb1461098c578063a7fc7a07146109bc578063b482d83f146109dc57600080fd5b80639d0c054d116101d75780639d0c054d146108de578063a1b8f374146108fe578063a22cb4651461092b578063a2ecc4031461094b57600080fd5b80638ff378ce1461085b57806394985ddd1461087c57806394e568471461089c57806395d89b41146108c957600080fd5b806342842e0e116103035780635aac17ef1161029657806370a082311161026557806370a08231146107d3578063715018a6146107f357806371d26919146108085780637cd88f451461081d5780638da5cb5b1461083d57600080fd5b80635aac17ef1461075f5780635c520a4b146107725780636352211e146107935780636f4f7366146107b357600080fd5b80634c0f38c2116102d25780634c0f38c2146106b85780634f6ccce7146106eb57806350dc46561461070b57806351dc86a51461072b57600080fd5b806342842e0e1461064357806344004cc114610663578063460348fa146106835780634a9fedb1146106a357600080fd5b80631f3a8fb41161037b57806332cb6b0c1161034a57806332cb6b0c146105ba5780633431a753146105ee57806338014ba01461060e5780633ccfd60b1461062e57600080fd5b80631f3a8fb41461053a57806323b872dd1461055a5780632f3b100e1461057a5780632f745c591461059a57600080fd5b80630aaef285116103b75780630aaef2851461049a57806315e1e831146104dc57806318160ddd146104f15780631a454b2c1461050657600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063095ea7b314610478575b600080fd5b3480156103f557600080fd5b50610409610404366004613ff2565b610df1565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610e1c565b6040516104159190614202565b34801561044c57600080fd5b5061046061045b366004613fb7565b610eae565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610498610493366004613ea5565b610f48565b005b3480156104a657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610415565b3480156104e857600080fd5b5061049861105e565b3480156104fd57600080fd5b506008546104ce565b34801561051257600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b34801561054657600080fd5b50610498610555366004613f7d565b6110b7565b34801561056657600080fd5b50610498610575366004613d34565b611132565b34801561058657600080fd5b50610498610595366004613f7d565b61117a565b3480156105a657600080fd5b506104ce6105b5366004613ea5565b6111f5565b3480156105c657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105fa57600080fd5b50610498610609366004613fb7565b61128b565b34801561061a57600080fd5b50610498610629366004613f7d565b6112dc565b34801561063a57600080fd5b50610498611355565b34801561064f57600080fd5b5061049861065e366004613d34565b61143b565b34801561066f57600080fd5b5061049861067e366004613d34565b611456565b34801561068f57600080fd5b5061040961069e366004613e1b565b611555565b3480156106af57600080fd5b50600f546104ce565b3480156106c457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006104ce565b3480156106f757600080fd5b506104ce610706366004613fb7565b6115db565b34801561071757600080fd5b50610498610726366004613fb7565b61166e565b34801561073757600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b61049861076d3660046140b5565b6116a1565b34801561077e57600080fd5b5060175461040990600160a01b900460ff1681565b34801561079f57600080fd5b506104606107ae366004613fb7565b61193a565b3480156107bf57600080fd5b506104986107ce366004613ce6565b6119b1565b3480156107df57600080fd5b506104ce6107ee366004613ce6565b6119fd565b3480156107ff57600080fd5b50610498611a84565b34801561081457600080fd5b50610498611aba565b34801561082957600080fd5b506104ce610838366004613fb7565b611b7c565b34801561084957600080fd5b50600b546001600160a01b0316610460565b34801561086757600080fd5b5060175461040990600160b81b900460ff1681565b34801561088857600080fd5b50610498610897366004613fd0565b611b9d565b3480156108a857600080fd5b506108bc6108b7366004613fb7565b611c1f565b604051610415919061433c565b3480156108d557600080fd5b50610433611ced565b3480156108ea57600080fd5b506104986108f9366004613ea5565b611cfc565b34801561090a57600080fd5b506104ce610919366004613fb7565b60146020526000908152604090205481565b34801561093757600080fd5b50610498610946366004613e6e565b611e2e565b34801561095757600080fd5b50610498610966366004613f7d565b611ef3565b34801561097757600080fd5b5060175461040990600160a81b900460ff1681565b34801561099857600080fd5b506104096109a7366004613fb7565b60009081526013602052604090205460ff1690565b3480156109c857600080fd5b506104986109d7366004613ce6565b611f6e565b6104986109ea36600461409a565b611fbc565b3480156109fb57600080fd5b50610498610a0a366004613d70565b61220f565b348015610a1b57600080fd5b50610498610a2a366004613fb7565b612247565b348015610a3b57600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b348015610a6f57600080fd5b506104ce600f5481565b348015610a8557600080fd5b506104ce60105481565b348015610a9b57600080fd5b50610abf610aaa366004613ce6565b60156020526000908152604090205460ff1681565b60405160ff9091168152602001610415565b348015610add57600080fd5b50610433610aec366004613fb7565b612298565b348015610afd57600080fd5b50610498610b0c366004613ea5565b612397565b348015610b1d57600080fd5b50610abf610b2c366004613fd0565b61242b565b348015610b3d57600080fd5b50610409610b4c366004613ce6565b60166020526000908152604090205460ff1681565b348015610b6d57600080fd5b5060175461040990600160b01b900460ff1681565b348015610b8e57600080fd5b50610abf610b9d366004613fd0565b612471565b348015610bae57600080fd5b50610c3b610bbd366004613fb7565b60136020526000908152604090205460ff80821691610100810482169162010000820481169163010000008104821691640100000000820481169165010000000000810482169166010000000000008204811691600160381b8104821691600160401b8204811691600160481b8104821691600160501b909104168b565b604080519b15158c5299151560208c015260ff988916998b019990995295871660608a0152938616608089015291851660a0880152841660c0870152831660e0860152821661010085015281166101208401521661014082015261016001610415565b348015610caa57600080fd5b50610498610cb9366004613f11565b612481565b348015610cca57600080fd5b50601754610460906001600160a01b031681565b348015610cea57600080fd5b506104ce600e5481565b348015610d0057600080fd5b50610409610d0f366004613d01565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d4957600080fd5b506104607f000000000000000000000000000000000000000000000000000000000000000081565b348015610d7d57600080fd5b506104ce610d8c366004613fb7565b6125c5565b348015610d9d57600080fd5b50610498610dac366004613ce6565b6125d5565b348015610dbd57600080fd5b50610498610dcc366004613ce6565b61266d565b348015610ddd57600080fd5b50610498610dec366004613ecf565b6126b8565b60006001600160e01b0319821663780e9d6360e01b1480610e165750610e16826127d2565b92915050565b606060008054610e2b90614542565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5790614542565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610f2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f538261193a565b9050806001600160a01b0316836001600160a01b03161415610fc15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f23565b336001600160a01b0382161480610fdd5750610fdd8133610d0f565b61104f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f23565b6110598383612822565b505050565b600b546001600160a01b031633146110885760405162461bcd60e51b8152600401610f2390614267565b6110b47f0000000000000000000000000000000000000000000000000000000000000000600e54612890565b50565b600b546001600160a01b031633146110e15760405162461bcd60e51b8152600401610f2390614267565b601760169054906101000a900460ff16151581151514156111145760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526016602052604090205460ff1661116f576111533382612a23565b61116f5760405162461bcd60e51b8152600401610f23906142eb565b611059838383612b16565b600b546001600160a01b031633146111a45760405162461bcd60e51b8152600401610f2390614267565b601760149054906101000a900460ff16151581151514156111d75760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a01b0260ff60a01b19909216919091179055565b6000611200836119fd565b82106112625760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146112b55760405162461bcd60e51b8152600401610f2390614267565b80600f5414156112d75760405162461bcd60e51b8152600401610f23906142c7565b600f55565b600b546001600160a01b031633146113065760405162461bcd60e51b8152600401610f2390614267565b60178054906101000a900460ff16151581151514156113375760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b81b0260ff60b81b19909216919091179055565b600b546001600160a01b0316331461137f5760405162461bcd60e51b8152600401610f2390614267565b60405147906000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169083908381818185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b50509050806114375760405162461bcd60e51b81526020600482015260126024820152714641494c45445f544f5f574954484452415760701b6044820152606401610f23565b5050565b6110598383836040518060200160405280600081525061220f565b600b546001600160a01b031633146114805760405162461bcd60e51b8152600401610f2390614267565b60405163a9059cbb60e01b81526001600160a01b03838116600483015260248201839052849160009183169063a9059cbb90604401602060405180830381600087803b1580156114cf57600080fd5b505af11580156114e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115079190613f9a565b90508061154e5760405162461bcd60e51b8152602060048201526015602482015274115490cc8c17d5d2551211149055d7d19052531151605a1b6044820152606401610f23565b5050505050565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506115d284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612cc1565b95945050505050565b60006115e660085490565b82106116495760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f23565b6008828154811061165c5761165c61462a565b90600052602060002001549050919050565b600b546001600160a01b031633146116985760405162461bcd60e51b8152600401610f2390614267565b6110b481612d70565b6002600c5414156116f45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a01b900460ff16156117445760405162461bcd60e51b815260206004820152600e60248201526d14149154d0531157d4105554d15160921b6044820152606401610f23565b61174f338383611555565b61178e5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d0531313d5d31254d560821b6044820152606401610f23565b3360009081526015602052604090205460ff167f00000000000000000000000000000000000000000000000000000000000000006117cc8583614480565b60ff1611156118145760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548460ff1661182460085490565b61182e9190614468565b111561184c5760405162461bcd60e51b8152600401610f239061429c565b60008460ff16116118905760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346118be7f000000000000000000000000000000000000000000000000000000000000000060ff87166144b9565b146118f95760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6119038482614480565b336000818152601560205260409020805460ff191660ff939093169290921790915561192f9085612d97565b50506001600c555050565b6000818152600260205260408120546001600160a01b031680610e165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f23565b600b546001600160a01b031633146119db5760405162461bcd60e51b8152600401610f2390614267565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a685760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f23565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611aae5760405162461bcd60e51b8152600401610f2390614267565b611ab86000612e2d565b565b600b546001600160a01b03163314611ae45760405162461bcd60e51b8152600401610f2390614267565b601154611b1e5760405162461bcd60e51b81526020600482015260086024820152674e4f5f534545445360c01b6044820152606401610f23565b60005b6011548110156110b45760118181548110611b3e57611b3e61462a565b906000526020600020016000905560128181548110611b5f57611b5f61462a565b600091825260208220015580611b7481614577565b915050611b21565b60128181548110611b8c57600080fd5b600091825260209091200154905081565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611c155760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610f23565b6114378282612e7f565b611c27613c18565b50600090815260136020908152604091829020825161016081018452905460ff8082161515835261010080830482161515948401949094526201000082048116948301949094526301000000810484166060830152640100000000810484166080830152650100000000008104841660a083015266010000000000008104841660c0830152600160381b8104841660e0830152600160401b8104841692820192909252600160481b82048316610120820152600160501b90910490911661014082015290565b606060018054610e2b90614542565b601754600160b01b900460ff1615611d565760405162461bcd60e51b815260206004820152601b60248201527f4d494e545f46524f4d5f434f4e54524f4c4c45525f50415553454400000000006044820152606401610f23565b3360009081526016602052604090205460ff16611da65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610f23565b7f000000000000000000000000000000000000000000000000000000000000000081611dd160085490565b611ddb9190614468565b1115611df95760405162461bcd60e51b8152600401610f239061429c565b60005b81811015611059576000611e0f60085490565b9050611e1b8482612f30565b5080611e2681614577565b915050611dfc565b6001600160a01b038216331415611e875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f23565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314611f1d5760405162461bcd60e51b8152600401610f2390614267565b601760159054906101000a900460ff1615158115151415611f505760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a81b0260ff60a81b19909216919091179055565b600b546001600160a01b03163314611f985760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b6002600c54141561200f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a81b900460ff16156120655760405162461bcd60e51b81526020600482015260146024820152731352539517d5d2551217d1551217d4105554d15160621b6044820152606401610f23565b3360009081526015602052604090205460ff167f00000000000000000000000000000000000000000000000000000000000000006120a38383614480565b60ff1611156120eb5760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548260ff166120fb60085490565b6121059190614468565b11156121235760405162461bcd60e51b8152600401610f239061429c565b60008260ff16116121675760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346121957f000000000000000000000000000000000000000000000000000000000000000060ff85166144b9565b146121d05760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6121da8282614480565b336000818152601560205260409020805460ff191660ff93909316929092179091556122069083612d97565b50506001600c55565b6122193383612a23565b6122355760405162461bcd60e51b8152600401610f23906142eb565b61224184848484612f4a565b50505050565b600b546001600160a01b031633146122715760405162461bcd60e51b8152600401610f2390614267565b600e548114156122935760405162461bcd60e51b8152600401610f23906142c7565b600e55565b6000818152600260205260409020546060906001600160a01b03166123175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f23565b60175460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b15801561235b57600080fd5b505afa15801561236f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e16919081019061402c565b600b546001600160a01b031633146123c15760405162461bcd60e51b8152600401610f2390614267565b600f54816123ce60085490565b6123d89190614468565b106123e257600080fd5b60006123ed60085490565b905060005b828160ff16101561224157600061240c60ff831684614468565b90506124188582612f30565b508061242381614592565b9150506123f2565b6018826012811061243b57600080fd5b01818154811061244a57600080fd5b9060005260206000209060209182820401919006915091509054906101000a900460ff1681565b602a826012811061243b57600080fd5b3360009081526016602052604090205460ff166124d35760405162461bcd60e51b815260206004820152601060248201526f4f4e4c595f434f4e54524f4c4c45525360801b6044820152606401610f23565b601754600160b81b900460ff161561251d5760405162461bcd60e51b815260206004820152600d60248201526c14915591505317d4105554d151609a1b6044820152606401610f23565b601154831461256e5760405162461bcd60e51b815260206004820152601e60248201527f494e505554535f53484f554c445f484156455f53414d455f4c454e47544800006044820152606401610f23565b60005b8381101561154e576125b385858381811061258e5761258e61462a565b905060200201358484848181106125a7576125a761462a565b90506020020135612f7d565b806125bd81614577565b915050612571565b60118181548110611b8c57600080fd5b600b546001600160a01b031633146125ff5760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b0381166126645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f23565b6110b481612e2d565b600b546001600160a01b031633146126975760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19169055565b600b546001600160a01b031633146126e25760405162461bcd60e51b8152600401610f2390614267565b60005b818110156110595760008383838181106127015761270161462a565b9050602002013590506127138161312f565b61274d5760405162461bcd60e51b815260206004820152600b60248201526a10d0539517d4915591505360aa1b6044820152606401610f23565b600061275a601283613193565b90506000601182815481106127715761277161462a565b906000526020600020015483604051602001612797929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c90506127bc8382612f7d565b50505080806127ca90614577565b9150506126e5565b60006001600160e01b031982166380ac58cd60e01b148061280357506001600160e01b03198216635b5e139f60e01b145b80610e1657506301ffc9a760e01b6001600160e01b0319831614610e16565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128578261193a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001612900929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161292d939291906141db565b602060405180830381600087803b15801561294757600080fd5b505af115801561295b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297f9190613f9a565b506000838152600d6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526129db906001614468565b6000858152600d6020526040902055612a1b8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b949350505050565b6000818152600260205260408120546001600160a01b0316612a9c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f23565b6000612aa78361193a565b9050806001600160a01b0316846001600160a01b03161480612ae25750836001600160a01b0316612ad784610eae565b6001600160a01b0316145b80612a1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612a1b565b826001600160a01b0316612b298261193a565b6001600160a01b031614612b915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f23565b6001600160a01b038216612bf35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f23565b612bfe83838361325e565b612c09600082612822565b6001600160a01b0383166000908152600360205260408120805460019290612c329084906144d8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612c60908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b8551811015612d65576000868281518110612ce357612ce361462a565b60200260200101519050808311612d25576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612d52565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612d5d81614577565b915050612cc6565b509092149392505050565b80600a541415612d925760405162461bcd60e51b8152600401610f23906142c7565b600a55565b6000612da260085490565b905060005b8260ff168160ff161015612241576000612dc460ff831684614468565b9050612dd08582612f30565b601054612dde826001614468565b612de891906145b2565b612e1a57612e187f0000000000000000000000000000000000000000000000000000000000000000600e54612890565b505b5080612e2581614592565b915050612da7565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612e8a60085490565b6012549091501580612ec5575060128054612ea7906001906144d8565b81548110612eb757612eb761462a565b906000526020600020015481115b15611059576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6801929092556012805492830181556000527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34449091015550565b611437828260405180602001604052806000815250613316565b612f55848484612b16565b612f6184848484613349565b6122415760405162461bcd60e51b8152600401610f2390614215565b600080612f8a8484613453565b91509150816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555050505050565b60008181526013602052604081205460ff161561314e57506000919050565b60125461315d57506000919050565b60128054839190613170906001906144d8565b815481106131805761318061462a565b9060005260206000200154119050919050565b81546000906131a457506000610e16565b82546000905b808210156132005760006131be8383613666565b9050848682815481106131d3576131d361462a565b906000526020600020015411156131ec578091506131fa565b6131f7816001614468565b92505b506131aa565b600082118015613235575083856132186001856144d8565b815481106132285761322861462a565b9060005260206000200154145b1561324e576132456001836144d8565b92505050610e16565b509050610e16565b505092915050565b6001600160a01b0383166132b9576132b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6132dc565b816001600160a01b0316836001600160a01b0316146132dc576132dc8382613688565b6001600160a01b0382166132f35761105981613725565b826001600160a01b0316826001600160a01b0316146110595761105982826137d4565b6133208383613818565b61332d6000848484613349565b6110595760405162461bcd60e51b8152600401610f2390614215565b60006001600160a01b0384163b1561344b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061338d90339089908890889060040161419e565b602060405180830381600087803b1580156133a757600080fd5b505af19250505080156133d7575060408051601f3d908101601f191682019092526133d49181019061400f565b60015b613431573d808015613405576040519150601f19603f3d011682016040523d82523d6000602084013e61340a565b606091505b5080516134295760405162461bcd60e51b8152600401610f2390614215565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a1b565b506001612a1b565b61345b613c18565b600061346683613966565b915061347182613adc565b60008181526014602052604090205490915061362757816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555061365f565b604080516020808201869052818301879052825180830384018152606090920190925280519101206136598582613453565b92509250505b9250929050565b600061367560028484186144a5565b61368190848416614468565b9392505050565b60006001613695846119fd565b61369f91906144d8565b6000838152600760205260409020549091508082146136f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613737906001906144d8565b6000838152600960205260408120546008805493945090928490811061375f5761375f61462a565b9060005260206000200154905080600883815481106137805761378061462a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806137b8576137b8614614565b6001900381819060005260206000200160009055905550505050565b60006137df836119fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661386e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f23565b6000818152600260205260409020546001600160a01b0316156138d35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f23565b6138df6000838361325e565b6001600160a01b0382166000908152600360205260408120805460019290613908908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61396e613c18565b60018152613981600a61ffff84166145b2565b156020820181905260009061399757600061399a565b60095b60109390931c9290506139bb61ffff84166139b6836000614480565b613b3c565b60ff16604083015260109290921c916139dd61ffff84166139b6836001614480565b60ff16606083015260109290921c916139ff61ffff84166139b6836002614480565b60ff16608083015260109290921c91613a2161ffff84166139b6836003614480565b60ff1660a083015260109290921c91613a4361ffff84166139b6836004614480565b60ff1660c083015260109290921c91613a6561ffff84166139b6836005614480565b60ff1660e083015260109290921c91613a8761ffff84166139b6836006614480565b60ff1661010083015260109290921c91613aaa61ffff84166139b6836007614480565b60ff1661012083015260109290921c91613acd61ffff84166139b6836008614480565b60ff1661014083015250919050565b6020808201516040808401516060850151608086015160a087015160c088015160e08901516101008a01516101208b01516101408c0151985160009b613b249b9a91016140ff565b604051602081830303815290604052610e16906144ef565b60008060188360ff1660128110613b5557613b5561462a565b0154613b6190856145c6565b905060188360ff1660128110613b7957613b7961462a565b018160ff1681548110613b8e57613b8e61462a565b60009182526020918290209181049091015460ff601f9092166101000a90048116600886901c9091161015613bc4579050610e16565b602a8360ff1660128110613bda57613bda61462a565b018160ff1681548110613bef57613bef61462a565b90600052602060002090602091828204019190069054906101000a900460ff1691505092915050565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b80356001600160a01b0381168114613c8b57600080fd5b919050565b60008083601f840112613ca257600080fd5b50813567ffffffffffffffff811115613cba57600080fd5b6020830191508360208260051b850101111561365f57600080fd5b803560ff81168114613c8b57600080fd5b600060208284031215613cf857600080fd5b61368182613c74565b60008060408385031215613d1457600080fd5b613d1d83613c74565b9150613d2b60208401613c74565b90509250929050565b600080600060608486031215613d4957600080fd5b613d5284613c74565b9250613d6060208501613c74565b9150604084013590509250925092565b60008060008060808587031215613d8657600080fd5b613d8f85613c74565b9350613d9d60208601613c74565b925060408501359150606085013567ffffffffffffffff811115613dc057600080fd5b8501601f81018713613dd157600080fd5b8035613de4613ddf82614440565b61440f565b818152886020838501011115613df957600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060408486031215613e3057600080fd5b613e3984613c74565b9250602084013567ffffffffffffffff811115613e5557600080fd5b613e6186828701613c90565b9497909650939450505050565b60008060408385031215613e8157600080fd5b613e8a83613c74565b91506020830135613e9a81614656565b809150509250929050565b60008060408385031215613eb857600080fd5b613ec183613c74565b946020939093013593505050565b60008060208385031215613ee257600080fd5b823567ffffffffffffffff811115613ef957600080fd5b613f0585828601613c90565b90969095509350505050565b60008060008060408587031215613f2757600080fd5b843567ffffffffffffffff80821115613f3f57600080fd5b613f4b88838901613c90565b90965094506020870135915080821115613f6457600080fd5b50613f7187828801613c90565b95989497509550505050565b600060208284031215613f8f57600080fd5b813561368181614656565b600060208284031215613fac57600080fd5b815161368181614656565b600060208284031215613fc957600080fd5b5035919050565b60008060408385031215613fe357600080fd5b50508035926020909101359150565b60006020828403121561400457600080fd5b813561368181614664565b60006020828403121561402157600080fd5b815161368181614664565b60006020828403121561403e57600080fd5b815167ffffffffffffffff81111561405557600080fd5b8201601f8101841361406657600080fd5b8051614074613ddf82614440565b81815285602083850101111561408957600080fd5b6115d2826020830160208601614516565b6000602082840312156140ac57600080fd5b61368182613cd5565b6000806000604084860312156140ca57600080fd5b613e3984613cd5565b600081518084526140eb816020860160208601614516565b601f01601f19169290920160200192915050565b8a151560f890811b82526001600160f81b03198b821b811660018401528a821b8116600284015289821b8116600384015288821b8116600484015287821b8116600584015286821b811660068401529085901b1660078201526000614173600883018560f81b6001600160f81b0319169052565b61418c600983018460f81b6001600160f81b0319169052565b50600a019a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906141d1908301846140d3565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006115d260608301846140d3565b60208152600061368160208301846140d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b6020808252600a90820152694e4f5f4348414e47455360b01b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8151151581526101608101602083015161435a602084018215159052565b50604083015161436f604084018260ff169052565b506060830151614384606084018260ff169052565b506080830151614399608084018260ff169052565b5060a08301516143ae60a084018260ff169052565b5060c08301516143c360c084018260ff169052565b5060e08301516143d860e084018260ff169052565b506101008381015160ff81168483015250506101208381015160ff81168483015250506101408381015160ff811684830152613256565b604051601f8201601f1916810167ffffffffffffffff8111828210171561443857614438614640565b604052919050565b600067ffffffffffffffff82111561445a5761445a614640565b50601f01601f191660200190565b6000821982111561447b5761447b6145e8565b500190565b600060ff821660ff84168060ff0382111561449d5761449d6145e8565b019392505050565b6000826144b4576144b46145fe565b500490565b60008160001904831182151516156144d3576144d36145e8565b500290565b6000828210156144ea576144ea6145e8565b500390565b80516020808301519190811015614510576000198160200360031b1b821691505b50919050565b60005b83811015614531578181015183820152602001614519565b838111156122415750506000910152565b600181811c9082168061455657607f821691505b6020821081141561451057634e487b7160e01b600052602260045260246000fd5b600060001982141561458b5761458b6145e8565b5060010190565b600060ff821660ff8114156145a9576145a96145e8565b60010192915050565b6000826145c1576145c16145fe565b500690565b600060ff8316806145d9576145d96145fe565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110b457600080fd5b6001600160e01b0319811681146110b457600080fdfea264697066735822122083d7f0c7575df90acd1781fff54203829dbc3b2d967e863da10a040c82b8ce2464736f6c63430008070033aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79520000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000000000000000000000000000011059dd247b4000000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35

Deployed Bytecode

0x6080604052600436106103e45760003560e01c80638ff378ce11610208578063c6b7773f11610118578063e1860ce7116100ab578063eedac3a61161007a578063eedac3a614610d3d578063f0503e8014610d71578063f2fde38b14610d91578063f6a74ed714610db1578063fc1ea44314610dd157600080fd5b8063e1860ce714610c9e578063e1fc334f14610cbe578063e5956db714610cde578063e985e9c514610cf457600080fd5b8063da8c229e116100e7578063da8c229e14610b31578063dab8a58e14610b61578063dd6302ef14610b82578063e05c57bf14610ba257600080fd5b8063c6b7773f14610a8f578063c87b56dd14610ad1578063cc47a40b14610af1578063d6d6b9ec14610b1157600080fd5b8063a4a8be851161019b578063b88d4fde1161016a578063b88d4fde146109ef578063bf31201914610a0f578063c002d23d14610a2f578063c084f54014610a63578063c58bf0a314610a7957600080fd5b8063a4a8be851461096b578063a69956eb1461098c578063a7fc7a07146109bc578063b482d83f146109dc57600080fd5b80639d0c054d116101d75780639d0c054d146108de578063a1b8f374146108fe578063a22cb4651461092b578063a2ecc4031461094b57600080fd5b80638ff378ce1461085b57806394985ddd1461087c57806394e568471461089c57806395d89b41146108c957600080fd5b806342842e0e116103035780635aac17ef1161029657806370a082311161026557806370a08231146107d3578063715018a6146107f357806371d26919146108085780637cd88f451461081d5780638da5cb5b1461083d57600080fd5b80635aac17ef1461075f5780635c520a4b146107725780636352211e146107935780636f4f7366146107b357600080fd5b80634c0f38c2116102d25780634c0f38c2146106b85780634f6ccce7146106eb57806350dc46561461070b57806351dc86a51461072b57600080fd5b806342842e0e1461064357806344004cc114610663578063460348fa146106835780634a9fedb1146106a357600080fd5b80631f3a8fb41161037b57806332cb6b0c1161034a57806332cb6b0c146105ba5780633431a753146105ee57806338014ba01461060e5780633ccfd60b1461062e57600080fd5b80631f3a8fb41461053a57806323b872dd1461055a5780632f3b100e1461057a5780632f745c591461059a57600080fd5b80630aaef285116103b75780630aaef2851461049a57806315e1e831146104dc57806318160ddd146104f15780631a454b2c1461050657600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063095ea7b314610478575b600080fd5b3480156103f557600080fd5b50610409610404366004613ff2565b610df1565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610e1c565b6040516104159190614202565b34801561044c57600080fd5b5061046061045b366004613fb7565b610eae565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610498610493366004613ea5565b610f48565b005b3480156104a657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000a81565b604051908152602001610415565b3480156104e857600080fd5b5061049861105e565b3480156104fd57600080fd5b506008546104ce565b34801561051257600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000381565b34801561054657600080fd5b50610498610555366004613f7d565b6110b7565b34801561056657600080fd5b50610498610575366004613d34565b611132565b34801561058657600080fd5b50610498610595366004613f7d565b61117a565b3480156105a657600080fd5b506104ce6105b5366004613ea5565b6111f5565b3480156105c657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000c35081565b3480156105fa57600080fd5b50610498610609366004613fb7565b61128b565b34801561061a57600080fd5b50610498610629366004613f7d565b6112dc565b34801561063a57600080fd5b50610498611355565b34801561064f57600080fd5b5061049861065e366004613d34565b61143b565b34801561066f57600080fd5b5061049861067e366004613d34565b611456565b34801561068f57600080fd5b5061040961069e366004613e1b565b611555565b3480156106af57600080fd5b50600f546104ce565b3480156106c457600080fd5b507f000000000000000000000000000000000000000000000000000000000000c3506104ce565b3480156106f757600080fd5b506104ce610706366004613fb7565b6115db565b34801561071757600080fd5b50610498610726366004613fb7565b61166e565b34801561073757600080fd5b506104ce7faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44581565b61049861076d3660046140b5565b6116a1565b34801561077e57600080fd5b5060175461040990600160a01b900460ff1681565b34801561079f57600080fd5b506104606107ae366004613fb7565b61193a565b3480156107bf57600080fd5b506104986107ce366004613ce6565b6119b1565b3480156107df57600080fd5b506104ce6107ee366004613ce6565b6119fd565b3480156107ff57600080fd5b50610498611a84565b34801561081457600080fd5b50610498611aba565b34801561082957600080fd5b506104ce610838366004613fb7565b611b7c565b34801561084957600080fd5b50600b546001600160a01b0316610460565b34801561086757600080fd5b5060175461040990600160b81b900460ff1681565b34801561088857600080fd5b50610498610897366004613fd0565b611b9d565b3480156108a857600080fd5b506108bc6108b7366004613fb7565b611c1f565b604051610415919061433c565b3480156108d557600080fd5b50610433611ced565b3480156108ea57600080fd5b506104986108f9366004613ea5565b611cfc565b34801561090a57600080fd5b506104ce610919366004613fb7565b60146020526000908152604090205481565b34801561093757600080fd5b50610498610946366004613e6e565b611e2e565b34801561095757600080fd5b50610498610966366004613f7d565b611ef3565b34801561097757600080fd5b5060175461040990600160a81b900460ff1681565b34801561099857600080fd5b506104096109a7366004613fb7565b60009081526013602052604090205460ff1690565b3480156109c857600080fd5b506104986109d7366004613ce6565b611f6e565b6104986109ea36600461409a565b611fbc565b3480156109fb57600080fd5b50610498610a0a366004613d70565b61220f565b348015610a1b57600080fd5b50610498610a2a366004613fb7565b612247565b348015610a3b57600080fd5b506104ce7f000000000000000000000000000000000000000000000000011059dd247b400081565b348015610a6f57600080fd5b506104ce600f5481565b348015610a8557600080fd5b506104ce60105481565b348015610a9b57600080fd5b50610abf610aaa366004613ce6565b60156020526000908152604090205460ff1681565b60405160ff9091168152602001610415565b348015610add57600080fd5b50610433610aec366004613fb7565b612298565b348015610afd57600080fd5b50610498610b0c366004613ea5565b612397565b348015610b1d57600080fd5b50610abf610b2c366004613fd0565b61242b565b348015610b3d57600080fd5b50610409610b4c366004613ce6565b60166020526000908152604090205460ff1681565b348015610b6d57600080fd5b5060175461040990600160b01b900460ff1681565b348015610b8e57600080fd5b50610abf610b9d366004613fd0565b612471565b348015610bae57600080fd5b50610c3b610bbd366004613fb7565b60136020526000908152604090205460ff80821691610100810482169162010000820481169163010000008104821691640100000000820481169165010000000000810482169166010000000000008204811691600160381b8104821691600160401b8204811691600160481b8104821691600160501b909104168b565b604080519b15158c5299151560208c015260ff988916998b019990995295871660608a0152938616608089015291851660a0880152841660c0870152831660e0860152821661010085015281166101208401521661014082015261016001610415565b348015610caa57600080fd5b50610498610cb9366004613f11565b612481565b348015610cca57600080fd5b50601754610460906001600160a01b031681565b348015610cea57600080fd5b506104ce600e5481565b348015610d0057600080fd5b50610409610d0f366004613d01565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d4957600080fd5b506104607f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca81565b348015610d7d57600080fd5b506104ce610d8c366004613fb7565b6125c5565b348015610d9d57600080fd5b50610498610dac366004613ce6565b6125d5565b348015610dbd57600080fd5b50610498610dcc366004613ce6565b61266d565b348015610ddd57600080fd5b50610498610dec366004613ecf565b6126b8565b60006001600160e01b0319821663780e9d6360e01b1480610e165750610e16826127d2565b92915050565b606060008054610e2b90614542565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5790614542565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610f2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f538261193a565b9050806001600160a01b0316836001600160a01b03161415610fc15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f23565b336001600160a01b0382161480610fdd5750610fdd8133610d0f565b61104f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f23565b6110598383612822565b505050565b600b546001600160a01b031633146110885760405162461bcd60e51b8152600401610f2390614267565b6110b47faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445600e54612890565b50565b600b546001600160a01b031633146110e15760405162461bcd60e51b8152600401610f2390614267565b601760169054906101000a900460ff16151581151514156111145760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526016602052604090205460ff1661116f576111533382612a23565b61116f5760405162461bcd60e51b8152600401610f23906142eb565b611059838383612b16565b600b546001600160a01b031633146111a45760405162461bcd60e51b8152600401610f2390614267565b601760149054906101000a900460ff16151581151514156111d75760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a01b0260ff60a01b19909216919091179055565b6000611200836119fd565b82106112625760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146112b55760405162461bcd60e51b8152600401610f2390614267565b80600f5414156112d75760405162461bcd60e51b8152600401610f23906142c7565b600f55565b600b546001600160a01b031633146113065760405162461bcd60e51b8152600401610f2390614267565b60178054906101000a900460ff16151581151514156113375760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b81b0260ff60b81b19909216919091179055565b600b546001600160a01b0316331461137f5760405162461bcd60e51b8152600401610f2390614267565b60405147906000906001600160a01b037f00000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35169083908381818185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b50509050806114375760405162461bcd60e51b81526020600482015260126024820152714641494c45445f544f5f574954484452415760701b6044820152606401610f23565b5050565b6110598383836040518060200160405280600081525061220f565b600b546001600160a01b031633146114805760405162461bcd60e51b8152600401610f2390614267565b60405163a9059cbb60e01b81526001600160a01b03838116600483015260248201839052849160009183169063a9059cbb90604401602060405180830381600087803b1580156114cf57600080fd5b505af11580156114e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115079190613f9a565b90508061154e5760405162461bcd60e51b8152602060048201526015602482015274115490cc8c17d5d2551211149055d7d19052531151605a1b6044820152606401610f23565b5050505050565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506115d284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612cc1565b95945050505050565b60006115e660085490565b82106116495760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f23565b6008828154811061165c5761165c61462a565b90600052602060002001549050919050565b600b546001600160a01b031633146116985760405162461bcd60e51b8152600401610f2390614267565b6110b481612d70565b6002600c5414156116f45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a01b900460ff16156117445760405162461bcd60e51b815260206004820152600e60248201526d14149154d0531157d4105554d15160921b6044820152606401610f23565b61174f338383611555565b61178e5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d0531313d5d31254d560821b6044820152606401610f23565b3360009081526015602052604090205460ff167f00000000000000000000000000000000000000000000000000000000000000036117cc8583614480565b60ff1611156118145760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548460ff1661182460085490565b61182e9190614468565b111561184c5760405162461bcd60e51b8152600401610f239061429c565b60008460ff16116118905760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346118be7f000000000000000000000000000000000000000000000000011059dd247b400060ff87166144b9565b146118f95760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6119038482614480565b336000818152601560205260409020805460ff191660ff939093169290921790915561192f9085612d97565b50506001600c555050565b6000818152600260205260408120546001600160a01b031680610e165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f23565b600b546001600160a01b031633146119db5760405162461bcd60e51b8152600401610f2390614267565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a685760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f23565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611aae5760405162461bcd60e51b8152600401610f2390614267565b611ab86000612e2d565b565b600b546001600160a01b03163314611ae45760405162461bcd60e51b8152600401610f2390614267565b601154611b1e5760405162461bcd60e51b81526020600482015260086024820152674e4f5f534545445360c01b6044820152606401610f23565b60005b6011548110156110b45760118181548110611b3e57611b3e61462a565b906000526020600020016000905560128181548110611b5f57611b5f61462a565b600091825260208220015580611b7481614577565b915050611b21565b60128181548110611b8c57600080fd5b600091825260209091200154905081565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79521614611c155760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610f23565b6114378282612e7f565b611c27613c18565b50600090815260136020908152604091829020825161016081018452905460ff8082161515835261010080830482161515948401949094526201000082048116948301949094526301000000810484166060830152640100000000810484166080830152650100000000008104841660a083015266010000000000008104841660c0830152600160381b8104841660e0830152600160401b8104841692820192909252600160481b82048316610120820152600160501b90910490911661014082015290565b606060018054610e2b90614542565b601754600160b01b900460ff1615611d565760405162461bcd60e51b815260206004820152601b60248201527f4d494e545f46524f4d5f434f4e54524f4c4c45525f50415553454400000000006044820152606401610f23565b3360009081526016602052604090205460ff16611da65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610f23565b7f000000000000000000000000000000000000000000000000000000000000c35081611dd160085490565b611ddb9190614468565b1115611df95760405162461bcd60e51b8152600401610f239061429c565b60005b81811015611059576000611e0f60085490565b9050611e1b8482612f30565b5080611e2681614577565b915050611dfc565b6001600160a01b038216331415611e875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f23565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314611f1d5760405162461bcd60e51b8152600401610f2390614267565b601760159054906101000a900460ff1615158115151415611f505760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a81b0260ff60a81b19909216919091179055565b600b546001600160a01b03163314611f985760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b6002600c54141561200f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a81b900460ff16156120655760405162461bcd60e51b81526020600482015260146024820152731352539517d5d2551217d1551217d4105554d15160621b6044820152606401610f23565b3360009081526015602052604090205460ff167f000000000000000000000000000000000000000000000000000000000000000a6120a38383614480565b60ff1611156120eb5760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548260ff166120fb60085490565b6121059190614468565b11156121235760405162461bcd60e51b8152600401610f239061429c565b60008260ff16116121675760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346121957f000000000000000000000000000000000000000000000000011059dd247b400060ff85166144b9565b146121d05760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6121da8282614480565b336000818152601560205260409020805460ff191660ff93909316929092179091556122069083612d97565b50506001600c55565b6122193383612a23565b6122355760405162461bcd60e51b8152600401610f23906142eb565b61224184848484612f4a565b50505050565b600b546001600160a01b031633146122715760405162461bcd60e51b8152600401610f2390614267565b600e548114156122935760405162461bcd60e51b8152600401610f23906142c7565b600e55565b6000818152600260205260409020546060906001600160a01b03166123175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f23565b60175460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b15801561235b57600080fd5b505afa15801561236f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e16919081019061402c565b600b546001600160a01b031633146123c15760405162461bcd60e51b8152600401610f2390614267565b600f54816123ce60085490565b6123d89190614468565b106123e257600080fd5b60006123ed60085490565b905060005b828160ff16101561224157600061240c60ff831684614468565b90506124188582612f30565b508061242381614592565b9150506123f2565b6018826012811061243b57600080fd5b01818154811061244a57600080fd5b9060005260206000209060209182820401919006915091509054906101000a900460ff1681565b602a826012811061243b57600080fd5b3360009081526016602052604090205460ff166124d35760405162461bcd60e51b815260206004820152601060248201526f4f4e4c595f434f4e54524f4c4c45525360801b6044820152606401610f23565b601754600160b81b900460ff161561251d5760405162461bcd60e51b815260206004820152600d60248201526c14915591505317d4105554d151609a1b6044820152606401610f23565b601154831461256e5760405162461bcd60e51b815260206004820152601e60248201527f494e505554535f53484f554c445f484156455f53414d455f4c454e47544800006044820152606401610f23565b60005b8381101561154e576125b385858381811061258e5761258e61462a565b905060200201358484848181106125a7576125a761462a565b90506020020135612f7d565b806125bd81614577565b915050612571565b60118181548110611b8c57600080fd5b600b546001600160a01b031633146125ff5760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b0381166126645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f23565b6110b481612e2d565b600b546001600160a01b031633146126975760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19169055565b600b546001600160a01b031633146126e25760405162461bcd60e51b8152600401610f2390614267565b60005b818110156110595760008383838181106127015761270161462a565b9050602002013590506127138161312f565b61274d5760405162461bcd60e51b815260206004820152600b60248201526a10d0539517d4915591505360aa1b6044820152606401610f23565b600061275a601283613193565b90506000601182815481106127715761277161462a565b906000526020600020015483604051602001612797929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c90506127bc8382612f7d565b50505080806127ca90614577565b9150506126e5565b60006001600160e01b031982166380ac58cd60e01b148061280357506001600160e01b03198216635b5e139f60e01b145b80610e1657506301ffc9a760e01b6001600160e01b0319831614610e16565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128578261193a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001612900929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161292d939291906141db565b602060405180830381600087803b15801561294757600080fd5b505af115801561295b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297f9190613f9a565b506000838152600d6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526129db906001614468565b6000858152600d6020526040902055612a1b8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b949350505050565b6000818152600260205260408120546001600160a01b0316612a9c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f23565b6000612aa78361193a565b9050806001600160a01b0316846001600160a01b03161480612ae25750836001600160a01b0316612ad784610eae565b6001600160a01b0316145b80612a1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612a1b565b826001600160a01b0316612b298261193a565b6001600160a01b031614612b915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f23565b6001600160a01b038216612bf35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f23565b612bfe83838361325e565b612c09600082612822565b6001600160a01b0383166000908152600360205260408120805460019290612c329084906144d8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612c60908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b8551811015612d65576000868281518110612ce357612ce361462a565b60200260200101519050808311612d25576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612d52565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612d5d81614577565b915050612cc6565b509092149392505050565b80600a541415612d925760405162461bcd60e51b8152600401610f23906142c7565b600a55565b6000612da260085490565b905060005b8260ff168160ff161015612241576000612dc460ff831684614468565b9050612dd08582612f30565b601054612dde826001614468565b612de891906145b2565b612e1a57612e187faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445600e54612890565b505b5080612e2581614592565b915050612da7565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612e8a60085490565b6012549091501580612ec5575060128054612ea7906001906144d8565b81548110612eb757612eb761462a565b906000526020600020015481115b15611059576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6801929092556012805492830181556000527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34449091015550565b611437828260405180602001604052806000815250613316565b612f55848484612b16565b612f6184848484613349565b6122415760405162461bcd60e51b8152600401610f2390614215565b600080612f8a8484613453565b91509150816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555050505050565b60008181526013602052604081205460ff161561314e57506000919050565b60125461315d57506000919050565b60128054839190613170906001906144d8565b815481106131805761318061462a565b9060005260206000200154119050919050565b81546000906131a457506000610e16565b82546000905b808210156132005760006131be8383613666565b9050848682815481106131d3576131d361462a565b906000526020600020015411156131ec578091506131fa565b6131f7816001614468565b92505b506131aa565b600082118015613235575083856132186001856144d8565b815481106132285761322861462a565b9060005260206000200154145b1561324e576132456001836144d8565b92505050610e16565b509050610e16565b505092915050565b6001600160a01b0383166132b9576132b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6132dc565b816001600160a01b0316836001600160a01b0316146132dc576132dc8382613688565b6001600160a01b0382166132f35761105981613725565b826001600160a01b0316826001600160a01b0316146110595761105982826137d4565b6133208383613818565b61332d6000848484613349565b6110595760405162461bcd60e51b8152600401610f2390614215565b60006001600160a01b0384163b1561344b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061338d90339089908890889060040161419e565b602060405180830381600087803b1580156133a757600080fd5b505af19250505080156133d7575060408051601f3d908101601f191682019092526133d49181019061400f565b60015b613431573d808015613405576040519150601f19603f3d011682016040523d82523d6000602084013e61340a565b606091505b5080516134295760405162461bcd60e51b8152600401610f2390614215565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a1b565b506001612a1b565b61345b613c18565b600061346683613966565b915061347182613adc565b60008181526014602052604090205490915061362757816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555061365f565b604080516020808201869052818301879052825180830384018152606090920190925280519101206136598582613453565b92509250505b9250929050565b600061367560028484186144a5565b61368190848416614468565b9392505050565b60006001613695846119fd565b61369f91906144d8565b6000838152600760205260409020549091508082146136f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613737906001906144d8565b6000838152600960205260408120546008805493945090928490811061375f5761375f61462a565b9060005260206000200154905080600883815481106137805761378061462a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806137b8576137b8614614565b6001900381819060005260206000200160009055905550505050565b60006137df836119fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661386e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f23565b6000818152600260205260409020546001600160a01b0316156138d35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f23565b6138df6000838361325e565b6001600160a01b0382166000908152600360205260408120805460019290613908908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61396e613c18565b60018152613981600a61ffff84166145b2565b156020820181905260009061399757600061399a565b60095b60109390931c9290506139bb61ffff84166139b6836000614480565b613b3c565b60ff16604083015260109290921c916139dd61ffff84166139b6836001614480565b60ff16606083015260109290921c916139ff61ffff84166139b6836002614480565b60ff16608083015260109290921c91613a2161ffff84166139b6836003614480565b60ff1660a083015260109290921c91613a4361ffff84166139b6836004614480565b60ff1660c083015260109290921c91613a6561ffff84166139b6836005614480565b60ff1660e083015260109290921c91613a8761ffff84166139b6836006614480565b60ff1661010083015260109290921c91613aaa61ffff84166139b6836007614480565b60ff1661012083015260109290921c91613acd61ffff84166139b6836008614480565b60ff1661014083015250919050565b6020808201516040808401516060850151608086015160a087015160c088015160e08901516101008a01516101208b01516101408c0151985160009b613b249b9a91016140ff565b604051602081830303815290604052610e16906144ef565b60008060188360ff1660128110613b5557613b5561462a565b0154613b6190856145c6565b905060188360ff1660128110613b7957613b7961462a565b018160ff1681548110613b8e57613b8e61462a565b60009182526020918290209181049091015460ff601f9092166101000a90048116600886901c9091161015613bc4579050610e16565b602a8360ff1660128110613bda57613bda61462a565b018160ff1681548110613bef57613bef61462a565b90600052602060002090602091828204019190069054906101000a900460ff1691505092915050565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b80356001600160a01b0381168114613c8b57600080fd5b919050565b60008083601f840112613ca257600080fd5b50813567ffffffffffffffff811115613cba57600080fd5b6020830191508360208260051b850101111561365f57600080fd5b803560ff81168114613c8b57600080fd5b600060208284031215613cf857600080fd5b61368182613c74565b60008060408385031215613d1457600080fd5b613d1d83613c74565b9150613d2b60208401613c74565b90509250929050565b600080600060608486031215613d4957600080fd5b613d5284613c74565b9250613d6060208501613c74565b9150604084013590509250925092565b60008060008060808587031215613d8657600080fd5b613d8f85613c74565b9350613d9d60208601613c74565b925060408501359150606085013567ffffffffffffffff811115613dc057600080fd5b8501601f81018713613dd157600080fd5b8035613de4613ddf82614440565b61440f565b818152886020838501011115613df957600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060408486031215613e3057600080fd5b613e3984613c74565b9250602084013567ffffffffffffffff811115613e5557600080fd5b613e6186828701613c90565b9497909650939450505050565b60008060408385031215613e8157600080fd5b613e8a83613c74565b91506020830135613e9a81614656565b809150509250929050565b60008060408385031215613eb857600080fd5b613ec183613c74565b946020939093013593505050565b60008060208385031215613ee257600080fd5b823567ffffffffffffffff811115613ef957600080fd5b613f0585828601613c90565b90969095509350505050565b60008060008060408587031215613f2757600080fd5b843567ffffffffffffffff80821115613f3f57600080fd5b613f4b88838901613c90565b90965094506020870135915080821115613f6457600080fd5b50613f7187828801613c90565b95989497509550505050565b600060208284031215613f8f57600080fd5b813561368181614656565b600060208284031215613fac57600080fd5b815161368181614656565b600060208284031215613fc957600080fd5b5035919050565b60008060408385031215613fe357600080fd5b50508035926020909101359150565b60006020828403121561400457600080fd5b813561368181614664565b60006020828403121561402157600080fd5b815161368181614664565b60006020828403121561403e57600080fd5b815167ffffffffffffffff81111561405557600080fd5b8201601f8101841361406657600080fd5b8051614074613ddf82614440565b81815285602083850101111561408957600080fd5b6115d2826020830160208601614516565b6000602082840312156140ac57600080fd5b61368182613cd5565b6000806000604084860312156140ca57600080fd5b613e3984613cd5565b600081518084526140eb816020860160208601614516565b601f01601f19169290920160200192915050565b8a151560f890811b82526001600160f81b03198b821b811660018401528a821b8116600284015289821b8116600384015288821b8116600484015287821b8116600584015286821b811660068401529085901b1660078201526000614173600883018560f81b6001600160f81b0319169052565b61418c600983018460f81b6001600160f81b0319169052565b50600a019a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906141d1908301846140d3565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006115d260608301846140d3565b60208152600061368160208301846140d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b6020808252600a90820152694e4f5f4348414e47455360b01b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8151151581526101608101602083015161435a602084018215159052565b50604083015161436f604084018260ff169052565b506060830151614384606084018260ff169052565b506080830151614399608084018260ff169052565b5060a08301516143ae60a084018260ff169052565b5060c08301516143c360c084018260ff169052565b5060e08301516143d860e084018260ff169052565b506101008381015160ff81168483015250506101208381015160ff81168483015250506101408381015160ff811684830152613256565b604051601f8201601f1916810167ffffffffffffffff8111828210171561443857614438614640565b604052919050565b600067ffffffffffffffff82111561445a5761445a614640565b50601f01601f191660200190565b6000821982111561447b5761447b6145e8565b500190565b600060ff821660ff84168060ff0382111561449d5761449d6145e8565b019392505050565b6000826144b4576144b46145fe565b500490565b60008160001904831182151516156144d3576144d36145e8565b500290565b6000828210156144ea576144ea6145e8565b500390565b80516020808301519190811015614510576000198160200360031b1b821691505b50919050565b60005b83811015614531578181015183820152602001614519565b838111156122415750506000910152565b600181811c9082168061455657607f821691505b6020821081141561451057634e487b7160e01b600052602260045260246000fd5b600060001982141561458b5761458b6145e8565b5060010190565b600060ff821660ff8114156145a9576145a96145e8565b60010192915050565b6000826145c1576145c16145fe565b500690565b600060ff8316806145d9576145d96145fe565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110b457600080fd5b6001600160e01b0319811681146110b457600080fdfea264697066735822122083d7f0c7575df90acd1781fff54203829dbc3b2d967e863da10a040c82b8ce2464736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79520000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000000000000000000000000000011059dd247b4000000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35

-----Decoded View---------------
Arg [0] : _LINK_KEY_HASH (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [1] : _LINK_ADDRESS (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [2] : _LINK_VRF_COORDINATOR_ADDRESS (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [3] : _LINK_VRF_PRICE (uint256): 2000000000000000000
Arg [4] : _MINT_PRICE (uint256): 76660000000000000
Arg [5] : _MAX_SUPPLY (uint256): 50000
Arg [6] : _MAX_PER_ADDRESS (uint256): 10
Arg [7] : _MAX_PER_ADDRESS_PRESALE (uint256): 3
Arg [8] : _SEED_BATCH_SIZE (uint256): 1000
Arg [9] : _PAID_TOKENS (uint256): 10000
Arg [10] : _splitter (address): 0x26230E75989a76C4e7A5D939200243aCf9B41d35

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [1] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [2] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [3] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [4] : 000000000000000000000000000000000000000000000000011059dd247b4000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000c350
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [9] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [10] : 00000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35


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.