ERC-20
Overview
Max Total Supply
200,000,000 FUKSEC
Holders
97
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
69,168.107821779929759064 FUKSECValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FUCKSEC
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract FUCKSEC is ERC20, Ownable { mapping (address => bool) public hasClaimed; bool public isClaimingActive = false; uint public maxClaimable = 1000 * (10 ** 18); uint private claimableTokens; constructor() ERC20("FUKSEC Token", "FUKSEC") { uint totalSupply = 200000000 * (10 ** 18); uint deployerTokens = totalSupply * 80 / 100; uint claimableSupply = totalSupply * 20 / 100; claimableTokens = totalSupply - deployerTokens; _mint(msg.sender, deployerTokens); _mint(address(this), claimableSupply); } function claimTokens(uint claimAmount) public { require(isClaimingActive, "Claiming is not active at the moment"); require(!hasClaimed[msg.sender], "You have already claimed tokens"); require(claimAmount <= maxClaimable, "Claim amount exceeds the maximum limit"); require(claimAmount <= claimableTokens, "Not enough tokens left to claim"); _mint(msg.sender, claimAmount); hasClaimed[msg.sender] = true; claimableTokens -= claimAmount; } function toggleClaiming() public onlyOwner { isClaimingActive = !isClaimingActive; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isClaimingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleClaiming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040525f60075f6101000a81548160ff021916908315150217905550683635c9adc5dea0000060085534801562000036575f80fd5b506040518060400160405280600c81526020017f46554b53454320546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600681526020017f46554b53454300000000000000000000000000000000000000000000000000008152508160039081620000b4919062000616565b508060049081620000c6919062000616565b505050620000e9620000dd6200017960201b60201c565b6200018060201b60201c565b5f6aa56fa5b99019a5c800000090505f60646050836200010a919062000727565b6200011691906200079e565b90505f60646014846200012a919062000727565b6200013691906200079e565b90508183620001469190620007d5565b6009819055506200015e33836200024360201b60201c565b6200017030826200024360201b60201c565b505050620008f3565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ab906200086d565b60405180910390fd5b620002c75f8383620003a860201b60201c565b8060025f828254620002da91906200088d565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003899190620008d8565b60405180910390a3620003a45f8383620003ad60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200042e57607f821691505b602082108103620004445762000443620003e9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200046b565b620004b486836200046b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004fe620004f8620004f284620004cc565b620004d5565b620004cc565b9050919050565b5f819050919050565b6200051983620004de565b62000531620005288262000505565b84845462000477565b825550505050565b5f90565b6200054762000539565b620005548184846200050e565b505050565b5b818110156200057b576200056f5f826200053d565b6001810190506200055a565b5050565b601f821115620005ca5762000594816200044a565b6200059f846200045c565b81016020851015620005af578190505b620005c7620005be856200045c565b83018262000559565b50505b505050565b5f82821c905092915050565b5f620005ec5f1984600802620005cf565b1980831691505092915050565b5f620006068383620005db565b9150826002028217905092915050565b6200062182620003b2565b67ffffffffffffffff8111156200063d576200063c620003bc565b5b62000649825462000416565b620006568282856200057f565b5f60209050601f8311600181146200068c575f841562000677578287015190505b620006838582620005f9565b865550620006f2565b601f1984166200069c866200044a565b5f5b82811015620006c5578489015182556001820191506020850194506020810190506200069e565b86831015620006e55784890151620006e1601f891682620005db565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200073382620004cc565b91506200074083620004cc565b92508282026200075081620004cc565b915082820484148315176200076a5762000769620006fa565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620007aa82620004cc565b9150620007b783620004cc565b925082620007ca57620007c962000771565b5b828204905092915050565b5f620007e182620004cc565b9150620007ee83620004cc565b9250828203905081811115620008095762000808620006fa565b5b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000855601f836200080f565b915062000862826200081f565b602082019050919050565b5f6020820190508181035f830152620008868162000847565b9050919050565b5f6200089982620004cc565b9150620008a683620004cc565b9250828201905080821115620008c157620008c0620006fa565b5b92915050565b620008d281620004cc565b82525050565b5f602082019050620008ed5f830184620008c7565b92915050565b611c7080620009015f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d7146102f7578063a9059cbb14610327578063dd62ed3e14610357578063f03f80c314610387578063f2fde38b146103a55761011f565b8063715018a61461027757806373b2e80e146102815780638010fc45146102b15780638da5cb5b146102bb57806395d89b41146102d95761011f565b8063313ce567116100f2578063313ce567146101bf5780633732ad1c146101dd57806339509351146101fb57806346e04a2f1461022b57806370a08231146102475761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b60405161013891906111ba565b60405180910390f35b61015b6004803603810190610156919061126b565b610451565b60405161016891906112c3565b60405180910390f35b610179610473565b60405161018691906112eb565b60405180910390f35b6101a960048036038101906101a49190611304565b61047c565b6040516101b691906112c3565b60405180910390f35b6101c76104aa565b6040516101d4919061136f565b60405180910390f35b6101e56104b2565b6040516101f291906112c3565b60405180910390f35b6102156004803603810190610210919061126b565b6104c4565b60405161022291906112c3565b60405180910390f35b61024560048036038101906102409190611388565b6104fa565b005b610261600480360381019061025c91906113b3565b6106d6565b60405161026e91906112eb565b60405180910390f35b61027f61071b565b005b61029b600480360381019061029691906113b3565b61072e565b6040516102a891906112c3565b60405180910390f35b6102b961074b565b005b6102c361077d565b6040516102d091906113ed565b60405180910390f35b6102e16107a5565b6040516102ee91906111ba565b60405180910390f35b610311600480360381019061030c919061126b565b610835565b60405161031e91906112c3565b60405180910390f35b610341600480360381019061033c919061126b565b6108aa565b60405161034e91906112c3565b60405180910390f35b610371600480360381019061036c9190611406565b6108cc565b60405161037e91906112eb565b60405180910390f35b61038f61094e565b60405161039c91906112eb565b60405180910390f35b6103bf60048036038101906103ba91906113b3565b610954565b005b6060600380546103d090611471565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611471565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f8061045b6109d6565b90506104688185856109dd565b600191505092915050565b5f600254905090565b5f806104866109d6565b9050610493858285610ba0565b61049e858585610c2b565b60019150509392505050565b5f6012905090565b60075f9054906101000a900460ff1681565b5f806104ce6109d6565b90506104ef8185856104e085896108cc565b6104ea91906114ce565b6109dd565b600191505092915050565b60075f9054906101000a900460ff16610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f90611571565b60405180910390fd5b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c9906115d9565b60405180910390fd5b600854811115610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90611667565b60405180910390fd5b60095481111561065c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610653906116cf565b60405180910390fd5b6106663382610e97565b600160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060095f8282546106cc91906116ed565b9250508190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610723610fe5565b61072c5f611063565b565b6006602052805f5260405f205f915054906101000a900460ff1681565b610753610fe5565b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107b490611471565b80601f01602080910402602001604051908101604052809291908181526020018280546107e090611471565b801561082b5780601f106108025761010080835404028352916020019161082b565b820191905f5260205f20905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b5f8061083f6109d6565b90505f61084c82866108cc565b905083811015610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890611790565b60405180910390fd5b61089e82868684036109dd565b60019250505092915050565b5f806108b46109d6565b90506108c1818585610c2b565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b61095c610fe5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c19061181e565b60405180910390fd5b6109d381611063565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906118ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab09061193a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9391906112eb565b60405180910390a3505050565b5f610bab84846108cc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c255781811015610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e906119a2565b60405180910390fd5b610c2484848484036109dd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090611a30565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90611abe565b60405180910390fd5b610d12838383611126565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90611b4c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e7e91906112eb565b60405180910390a3610e9184848461112b565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90611bb4565b60405180910390fd5b610f105f8383611126565b8060025f828254610f2191906114ce565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fce91906112eb565b60405180910390a3610fe15f838361112b565b5050565b610fed6109d6565b73ffffffffffffffffffffffffffffffffffffffff1661100b61077d565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890611c1c565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561116757808201518184015260208101905061114c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61118c82611130565b611196818561113a565b93506111a681856020860161114a565b6111af81611172565b840191505092915050565b5f6020820190508181035f8301526111d28184611182565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611207826111de565b9050919050565b611217816111fd565b8114611221575f80fd5b50565b5f813590506112328161120e565b92915050565b5f819050919050565b61124a81611238565b8114611254575f80fd5b50565b5f8135905061126581611241565b92915050565b5f8060408385031215611281576112806111da565b5b5f61128e85828601611224565b925050602061129f85828601611257565b9150509250929050565b5f8115159050919050565b6112bd816112a9565b82525050565b5f6020820190506112d65f8301846112b4565b92915050565b6112e581611238565b82525050565b5f6020820190506112fe5f8301846112dc565b92915050565b5f805f6060848603121561131b5761131a6111da565b5b5f61132886828701611224565b935050602061133986828701611224565b925050604061134a86828701611257565b9150509250925092565b5f60ff82169050919050565b61136981611354565b82525050565b5f6020820190506113825f830184611360565b92915050565b5f6020828403121561139d5761139c6111da565b5b5f6113aa84828501611257565b91505092915050565b5f602082840312156113c8576113c76111da565b5b5f6113d584828501611224565b91505092915050565b6113e7816111fd565b82525050565b5f6020820190506114005f8301846113de565b92915050565b5f806040838503121561141c5761141b6111da565b5b5f61142985828601611224565b925050602061143a85828601611224565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061148857607f821691505b60208210810361149b5761149a611444565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114d882611238565b91506114e383611238565b92508282019050808211156114fb576114fa6114a1565b5b92915050565b7f436c61696d696e67206973206e6f742061637469766520617420746865206d6f5f8201527f6d656e7400000000000000000000000000000000000000000000000000000000602082015250565b5f61155b60248361113a565b915061156682611501565b604082019050919050565b5f6020820190508181035f8301526115888161154f565b9050919050565b7f596f75206861766520616c726561647920636c61696d656420746f6b656e73005f82015250565b5f6115c3601f8361113a565b91506115ce8261158f565b602082019050919050565b5f6020820190508181035f8301526115f0816115b7565b9050919050565b7f436c61696d20616d6f756e74206578636565647320746865206d6178696d756d5f8201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b5f61165160268361113a565b915061165c826115f7565b604082019050919050565b5f6020820190508181035f83015261167e81611645565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f20636c61696d005f82015250565b5f6116b9601f8361113a565b91506116c482611685565b602082019050919050565b5f6020820190508181035f8301526116e6816116ad565b9050919050565b5f6116f782611238565b915061170283611238565b925082820390508181111561171a576117196114a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61177a60258361113a565b915061178582611720565b604082019050919050565b5f6020820190508181035f8301526117a78161176e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61180860268361113a565b9150611813826117ae565b604082019050919050565b5f6020820190508181035f830152611835816117fc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61189660248361113a565b91506118a18261183c565b604082019050919050565b5f6020820190508181035f8301526118c38161188a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61192460228361113a565b915061192f826118ca565b604082019050919050565b5f6020820190508181035f83015261195181611918565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61198c601d8361113a565b915061199782611958565b602082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611a1a60258361113a565b9150611a25826119c0565b604082019050919050565b5f6020820190508181035f830152611a4781611a0e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611aa860238361113a565b9150611ab382611a4e565b604082019050919050565b5f6020820190508181035f830152611ad581611a9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611b3660268361113a565b9150611b4182611adc565b604082019050919050565b5f6020820190508181035f830152611b6381611b2a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611b9e601f8361113a565b9150611ba982611b6a565b602082019050919050565b5f6020820190508181035f830152611bcb81611b92565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611c0660208361113a565b9150611c1182611bd2565b602082019050919050565b5f6020820190508181035f830152611c3381611bfa565b905091905056fea264697066735822122054ee03169dcc07d64c970aedf10f8713773bdba8950b62e00f7673c6556f85db64736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d7146102f7578063a9059cbb14610327578063dd62ed3e14610357578063f03f80c314610387578063f2fde38b146103a55761011f565b8063715018a61461027757806373b2e80e146102815780638010fc45146102b15780638da5cb5b146102bb57806395d89b41146102d95761011f565b8063313ce567116100f2578063313ce567146101bf5780633732ad1c146101dd57806339509351146101fb57806346e04a2f1461022b57806370a08231146102475761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b60405161013891906111ba565b60405180910390f35b61015b6004803603810190610156919061126b565b610451565b60405161016891906112c3565b60405180910390f35b610179610473565b60405161018691906112eb565b60405180910390f35b6101a960048036038101906101a49190611304565b61047c565b6040516101b691906112c3565b60405180910390f35b6101c76104aa565b6040516101d4919061136f565b60405180910390f35b6101e56104b2565b6040516101f291906112c3565b60405180910390f35b6102156004803603810190610210919061126b565b6104c4565b60405161022291906112c3565b60405180910390f35b61024560048036038101906102409190611388565b6104fa565b005b610261600480360381019061025c91906113b3565b6106d6565b60405161026e91906112eb565b60405180910390f35b61027f61071b565b005b61029b600480360381019061029691906113b3565b61072e565b6040516102a891906112c3565b60405180910390f35b6102b961074b565b005b6102c361077d565b6040516102d091906113ed565b60405180910390f35b6102e16107a5565b6040516102ee91906111ba565b60405180910390f35b610311600480360381019061030c919061126b565b610835565b60405161031e91906112c3565b60405180910390f35b610341600480360381019061033c919061126b565b6108aa565b60405161034e91906112c3565b60405180910390f35b610371600480360381019061036c9190611406565b6108cc565b60405161037e91906112eb565b60405180910390f35b61038f61094e565b60405161039c91906112eb565b60405180910390f35b6103bf60048036038101906103ba91906113b3565b610954565b005b6060600380546103d090611471565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611471565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f8061045b6109d6565b90506104688185856109dd565b600191505092915050565b5f600254905090565b5f806104866109d6565b9050610493858285610ba0565b61049e858585610c2b565b60019150509392505050565b5f6012905090565b60075f9054906101000a900460ff1681565b5f806104ce6109d6565b90506104ef8185856104e085896108cc565b6104ea91906114ce565b6109dd565b600191505092915050565b60075f9054906101000a900460ff16610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f90611571565b60405180910390fd5b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c9906115d9565b60405180910390fd5b600854811115610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90611667565b60405180910390fd5b60095481111561065c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610653906116cf565b60405180910390fd5b6106663382610e97565b600160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060095f8282546106cc91906116ed565b9250508190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610723610fe5565b61072c5f611063565b565b6006602052805f5260405f205f915054906101000a900460ff1681565b610753610fe5565b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107b490611471565b80601f01602080910402602001604051908101604052809291908181526020018280546107e090611471565b801561082b5780601f106108025761010080835404028352916020019161082b565b820191905f5260205f20905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b5f8061083f6109d6565b90505f61084c82866108cc565b905083811015610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890611790565b60405180910390fd5b61089e82868684036109dd565b60019250505092915050565b5f806108b46109d6565b90506108c1818585610c2b565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b61095c610fe5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c19061181e565b60405180910390fd5b6109d381611063565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906118ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab09061193a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9391906112eb565b60405180910390a3505050565b5f610bab84846108cc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c255781811015610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e906119a2565b60405180910390fd5b610c2484848484036109dd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090611a30565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90611abe565b60405180910390fd5b610d12838383611126565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90611b4c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e7e91906112eb565b60405180910390a3610e9184848461112b565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90611bb4565b60405180910390fd5b610f105f8383611126565b8060025f828254610f2191906114ce565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fce91906112eb565b60405180910390a3610fe15f838361112b565b5050565b610fed6109d6565b73ffffffffffffffffffffffffffffffffffffffff1661100b61077d565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890611c1c565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561116757808201518184015260208101905061114c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61118c82611130565b611196818561113a565b93506111a681856020860161114a565b6111af81611172565b840191505092915050565b5f6020820190508181035f8301526111d28184611182565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611207826111de565b9050919050565b611217816111fd565b8114611221575f80fd5b50565b5f813590506112328161120e565b92915050565b5f819050919050565b61124a81611238565b8114611254575f80fd5b50565b5f8135905061126581611241565b92915050565b5f8060408385031215611281576112806111da565b5b5f61128e85828601611224565b925050602061129f85828601611257565b9150509250929050565b5f8115159050919050565b6112bd816112a9565b82525050565b5f6020820190506112d65f8301846112b4565b92915050565b6112e581611238565b82525050565b5f6020820190506112fe5f8301846112dc565b92915050565b5f805f6060848603121561131b5761131a6111da565b5b5f61132886828701611224565b935050602061133986828701611224565b925050604061134a86828701611257565b9150509250925092565b5f60ff82169050919050565b61136981611354565b82525050565b5f6020820190506113825f830184611360565b92915050565b5f6020828403121561139d5761139c6111da565b5b5f6113aa84828501611257565b91505092915050565b5f602082840312156113c8576113c76111da565b5b5f6113d584828501611224565b91505092915050565b6113e7816111fd565b82525050565b5f6020820190506114005f8301846113de565b92915050565b5f806040838503121561141c5761141b6111da565b5b5f61142985828601611224565b925050602061143a85828601611224565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061148857607f821691505b60208210810361149b5761149a611444565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114d882611238565b91506114e383611238565b92508282019050808211156114fb576114fa6114a1565b5b92915050565b7f436c61696d696e67206973206e6f742061637469766520617420746865206d6f5f8201527f6d656e7400000000000000000000000000000000000000000000000000000000602082015250565b5f61155b60248361113a565b915061156682611501565b604082019050919050565b5f6020820190508181035f8301526115888161154f565b9050919050565b7f596f75206861766520616c726561647920636c61696d656420746f6b656e73005f82015250565b5f6115c3601f8361113a565b91506115ce8261158f565b602082019050919050565b5f6020820190508181035f8301526115f0816115b7565b9050919050565b7f436c61696d20616d6f756e74206578636565647320746865206d6178696d756d5f8201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b5f61165160268361113a565b915061165c826115f7565b604082019050919050565b5f6020820190508181035f83015261167e81611645565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f20636c61696d005f82015250565b5f6116b9601f8361113a565b91506116c482611685565b602082019050919050565b5f6020820190508181035f8301526116e6816116ad565b9050919050565b5f6116f782611238565b915061170283611238565b925082820390508181111561171a576117196114a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61177a60258361113a565b915061178582611720565b604082019050919050565b5f6020820190508181035f8301526117a78161176e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61180860268361113a565b9150611813826117ae565b604082019050919050565b5f6020820190508181035f830152611835816117fc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61189660248361113a565b91506118a18261183c565b604082019050919050565b5f6020820190508181035f8301526118c38161188a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61192460228361113a565b915061192f826118ca565b604082019050919050565b5f6020820190508181035f83015261195181611918565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61198c601d8361113a565b915061199782611958565b602082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611a1a60258361113a565b9150611a25826119c0565b604082019050919050565b5f6020820190508181035f830152611a4781611a0e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611aa860238361113a565b9150611ab382611a4e565b604082019050919050565b5f6020820190508181035f830152611ad581611a9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611b3660268361113a565b9150611b4182611adc565b604082019050919050565b5f6020820190508181035f830152611b6381611b2a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611b9e601f8361113a565b9150611ba982611b6a565b602082019050919050565b5f6020820190508181035f830152611bcb81611b92565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611c0660208361113a565b9150611c1182611bd2565b602082019050919050565b5f6020820190508181035f830152611c3381611bfa565b905091905056fea264697066735822122054ee03169dcc07d64c970aedf10f8713773bdba8950b62e00f7673c6556f85db64736f6c63430008140033
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.