ERC-20
Overview
Max Total Supply
22,614,509.496115887782856802 SPACE
Holders
120,220
Market
Price
$0.02 @ 0.000006 ETH (+3.94%)
Onchain Market Cap
$347,811.38
Circulating Supply Market Cap
$108,156.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
19.232067532674549521 SPACEValue
$0.30 ( ~0.000121618122857771 ETH) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
StarToken
Compiler Version
v0.8.12+commit.f00d7308
ZkSolc Version
v1.3.1
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "./Owned.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 StarToken is owned, IERC20, IERC20Metadata { uint256 public raiseSupply; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address public farmLib; uint256 public burnNumber; address public crossChain; 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 value {ERC20} uses, unless this function is * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function mint(uint256 amount) public onlyOwner { _mint(_msgSender(), amount); } /** * @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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(_msgSender() == account || currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } function farmMint(address account, uint256 amount) public onlyFarmLib virtual{ raiseSupply += amount; _mint( account, amount); } function crossChainMint(address account, uint256 amount) external onlyCrossChain virtual{ raiseSupply += amount; _mint( account, amount); } function setFarmLib(address _addr) public onlyOwner{ farmLib = _addr; } function setCrossChain(address _addr) public onlyOwner{ crossChain = _addr; } modifier onlyFarmLib() { require(_msgSender() == farmLib, "not farmLib"); _; } modifier onlyCrossChain() { require(_msgSender() == address(crossChain), "not farm"); _; } /** * @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; } _totalSupply -= amount; burnNumber += 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 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 {} uint256[45] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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); }
// 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 pragma solidity ^0.8.0; abstract contract owned { address public owner; constructor() { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner,"user not is owner"); _; } function transferOwnership(address newOwner) onlyOwner public { if (newOwner == address(0)) { owner = newOwner; } } function _msgSender() internal view virtual returns (address) { return msg.sender; } }
{ "optimizer": { "enabled": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crossChain","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"crossChainMint","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":[],"name":"farmLib","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"farmMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raiseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setCrossChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setFarmLib","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100024595ee2be472520888cca94bd9bf38a9c312b34fb7b7d337211afe39b2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005535041434500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055350414345000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000700000000000200010000000103550000006001100270000002070010019d0000008001000039000000400300003900000000001304350000000101200190000000500000c13d0000000001000031000000040110008c0000008e0000413d0000000101000367000000000101043b000000e0011002700000020e0210009c000000ee0000613d0000020f0210009c000000fa0000613d000002100210009c000001080000613d000002110210009c000001170000613d000002120210009c000001230000613d000002130210009c000001310000613d000002140210009c0000013d0000613d000002150210009c0000014a0000613d000002160210009c000001580000613d000002170210009c000001680000613d000002180210009c000001740000613d000002190210009c000001820000613d0000021a0210009c0000018e0000613d0000021b0210009c0000019e0000613d0000021c0210009c000001ad0000613d0000021d0210009c000001bf0000613d0000021e0210009c000001cb0000613d0000021f0210009c000001d90000613d000002200210009c000001e70000613d000002210210009c000001f30000613d000002220210009c000002030000613d000002230210009c000002150000613d000002240110009c0000008e0000c13d0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f081504170000040f00000007020000290000000003020433000700000003001d00000000020100190000000001030019081503610000040f0000000703000029000000000231004900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000001001d081502740000040f00000007080000290000001f0280018f000000010300036700000000070100190000000501800270000000000410004c000000660000613d000000000400001900000005054002100000000006570019000000000553034f000000000505043b00000000005604350000000104400039000000000514004b0000005e0000413d000000000420004c000000750000613d0000000501100210000000000313034f00000000011700190000000302200210000000000401043300000000042401cf000000000424022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000242019f00000000002104350000020801000041000000400280008c000000000200001900000000020140190000020803800197000000000430004c000000000100a019000002080330009c000000000102c019000000000110004c0000008e0000c13d0000000001070433000002090210009c0000008e0000213d00000000028700190000000001710019000600000002001d000700000007001d0815028b0000040f0000000704000029000000000301001900000020014000390000000001010433000002090210009c000000910000a13d000000000100001900000000020000190815026b0000040f00000000014100190000000602000029000400000003001d0815028b0000040f000100000001001d0000000001000019081508130000040f0000020a011001970000000002000411000000000121019f0000000002000019081508110000040f000000040100002900000000020104330000020b0120009c000000a90000413d0000020d010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f000300000002001d0000000501000039000500000001001d081508130000040f081502c80000040f0000000002010019000000200120008c000000cc0000413d00000005010000290000000000100435000700000002001d000000200200003900000000010000190815024c0000040f00000003030000290000001f023000390000000502200270000000200330008c000000000200401900000007030000290000001f0330003900000005033002700000000003310019000600000003001d00000000022100190000000601000029000000000112004b000000cc0000813d0000000001000019000700000002001d0000000702000029081508110000040f00000007020000290000000102200039000000c20000013d00000003040000290000001f0140008c000002240000a13d000000050100002900000000001004350000002002000039000700000002001d00000000010000190815024c0000040f00000007040000290000000303000029000000200200008a000000000223016f000200000002001d000000000201001900000000050000190000000201000029000000000115004b00000004010000290000000001140019000002310000813d0000000001010433000600000002001d000700000004001d000500000005001d081508110000040f0000000505000029000000070400002900000006020000290000000303000029000000200550003900000020044000390000000102200039000000dc0000013d0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503910000040f081504030000040f0000000701000029000000000101043300000000020000190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503790000040f081504db0000040f000000070100002900000000010104330000000102000039000000000021043500000020020000390000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f0000000401000039081508130000040f000000070200002900000000030204330000000000130435000000200200003900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503910000040f081507800000040f0000000701000029000000000101043300000000020000190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503a70000040f081504e00000040f000000070100002900000000010104330000000102000039000000000021043500000020020000390000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503910000040f081507950000040f0000000701000029000000000101043300000000020000190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f000000070100002900000000010104330000001202000039000000000021043500000020020000390000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503790000040f081505140000040f000000070100002900000000010104330000000102000039000000000021043500000020020000390000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f0000000901000039081508130000040f0000000702000029000000000302043300000225011001970000000000130435000000200200003900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503790000040f081507200000040f0000000701000029000000000101043300000000020000190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503910000040f081504cc0000040f000000070200002900000000030204330000000000130435000000200200003900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503790000040f081505800000040f0000000701000029000000000101043300000000020000190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f0000000001000019081508130000040f0000000702000029000000000302043300000225011001970000000000130435000000200200003900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f0000000101000039081508130000040f000000070200002900000000030204330000000000130435000000200200003900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f081504690000040f00000007020000290000000003020433000700000003001d00000000020100190000000001030019081503610000040f0000000703000029000000000231004900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503c30000040f0815053e0000040f0000000701000029000000000101043300000000020000190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503790000040f0815054e0000040f000000070100002900000000010104330000000102000039000000000021043500000020020000390000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503790000040f081504d60000040f000000070100002900000000010104330000000102000039000000000021043500000020020000390000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503790000040f081507500000040f0000000701000029000000000101043300000000020000190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f0000000701000039081508130000040f0000000702000029000000000302043300000225011001970000000000130435000000200200003900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d081503d70000040f000600000002001d081504bb0000040f0000000602000029081504c40000040f081508130000040f000000070200002900000000030204330000000000130435000000200200003900000000010300190000000003000019081502610000040f0000000001000416000000000110004c0000008e0000c13d0000000001000031000700000003001d0815034e0000040f0000000801000039081508130000040f000000070200002900000000030204330000000000130435000000200200003900000000010300190000000003000019081502610000040f000000000140004c00000000010000190000022a0000613d0000000401000029000000200110003900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f00000001014002100000023f0000013d0000000204000029000000000434004b0000023d0000813d0000000303300210000000f80430018f000000010300008a000000000443022f000000000334013f0000000001010433000000000131016f081508110000040f000000030300002900000001010000390000000102300210000000000112019f0000000502000039081508110000040f0000000101000029081502dc0000040f0000002002000039000001000100003900000000002104390000012002000039000000000002043900000040020000390000020c03000041081502610000040f0000020703000041000002070410009c000000000103801900000040011002100000006002200210000000000112019f0000000002000414000002070420009c0000000002038019000000c0022002100000000001210019000002260110004100008010020000390815080c0000040f00000001022001900000025e0000613d000000000101043b000000000001042d000000000100001900000000020000190815026b0000040f0000020704000041000002070510009c000000000104801900000040011002100000000001310019000002070320009c000000000204801900000060022002100000000001210019000008160001042e0000020703000041000002070420009c0000000002038019000002070410009c000000000103801900000040011002100000006002200210000000000112019f00000817000104300000001f01100039000000200200008a000000000321016f000000400200003900000000010204330000000003310019000000000413004b00000000040000190000000104004039000002090530009c000002830000213d0000000104400190000002830000c13d0000000000320435000000000001042d0000020d010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f00030000000000020000001f051000390000020807000041000000000325004b0000000003000019000000000307401900000208042001970000020806500197000000000546004b00000000050000190000000005072019000000000446013f000002080440009c0000000003056019000000000330004c000002bd0000613d000300000002001d00000000030104330000020b0230009c000200000001001d000002c00000813d0000003f01300039000000200200008a000000000121016f000100000003001d081502740000040f000000010600002900000000006104350000000205000029000000000265001900000020022000390000000303000029000000000232004b000002bd0000213d0000000002000019000000000362004b000002b60000813d00000020022000390000000003120019000000000452001900000000040404330000000000430435000002ae0000013d000000000262004b000002bb0000a13d0000000002160019000000200220003900000000000204350000000300000005000000000001042d000000000100001900000000020000190815026b0000040f0000020d010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f000000010210018f00000001011002700000007f0310018f000000000420004c00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b000002d40000c13d000000000001042d0000020d010000410000000000100435000000220100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f0006000000000002000200000001001d0000000001010433000300000001001d0000020b0110009c000003460000813d0000000601000039000400000001001d081508130000040f081502c80000040f0000000002010019000000200120008c000003040000413d00000004010000290000000000100435000600000002001d000000200200003900000000010000190815024c0000040f00000003030000290000001f023000390000000502200270000000200330008c000000000200401900000006030000290000001f0330003900000005033002700000000003310019000500000003001d00000000022100190000000501000029000000000112004b000003040000813d0000000001000019000600000002001d0000000602000029081508110000040f00000006020000290000000102200039000002fa0000013d00000003040000290000001f0140008c000003260000a13d000000040100002900000000001004350000002002000039000600000002001d00000000010000190815024c0000040f00000006040000290000000303000029000000200200008a000000000223016f000100000002001d000000000201001900000000050000190000000101000029000000000115004b00000002010000290000000001140019000003330000813d0000000001010433000500000002001d000600000004001d000400000005001d081508110000040f0000000405000029000000060400002900000005020000290000000303000029000000200550003900000020044000390000000102200039000003140000013d000000000140004c00000000010000190000032c0000613d0000000201000029000000200110003900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000003410000013d0000000104000029000000000434004b0000033f0000813d0000000303300210000000f80430018f000000010300008a000000000443022f000000000334013f0000000001010433000000000131016f081508110000040f000000030300002900000001010000390000000102300210000000000112019f0000000602000039081508110000040f0000000600000005000000000001042d0000020d010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f000000040110008a000000010200008a0000020803000041000000000221004b000000000200001900000000020320190000020801100197000002080410009c00000000030080190000020801100167000002080110009c00000000010200190000000001036019000000000110004c0000035e0000613d000000000001042d000000000100001900000000020000190815026b0000040f0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000003700000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000003680000013d000000000234004b000003740000a13d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000000040110008a00000208020000410000003f0310008c000000000300001900000000030220190000020801100197000000000410004c0000000002008019000002080110009c00000000010300190000000001026019000000000110004c0000038e0000613d00000001020003670000000401200370000000000101043b000002250310009c0000038e0000213d0000002402200370000000000202043b000000000001042d000000000100001900000000020000190815026b0000040f000000040110008a00000208020000410000001f0310008c000000000300001900000000030220190000020801100197000000000410004c0000000002008019000002080110009c00000000010300190000000001026019000000000110004c000003a40000613d00000004010000390000000101100367000000000101043b000002250210009c000003a40000213d000000000001042d000000000100001900000000020000190815026b0000040f000000040110008a00000208020000410000005f0310008c000000000300001900000000030220190000020801100197000000000410004c0000000002008019000002080110009c00000000010300190000000001026019000000000110004c000003c00000613d00000001030003670000000401300370000000000101043b000002250210009c000003c00000213d0000002402300370000000000202043b000002250420009c000003c00000213d0000004403300370000000000303043b000000000001042d000000000100001900000000020000190815026b0000040f000000040110008a00000208020000410000001f0310008c000000000300001900000000030220190000020801100197000000000410004c0000000002008019000002080110009c00000000010300190000000001026019000000000110004c000003d40000613d00000004010000390000000101100367000000000101043b000000000001042d000000000100001900000000020000190815026b0000040f000000040110008a00000208020000410000003f0310008c000000000300001900000000030220190000020801100197000000000410004c0000000002008019000002080110009c00000000010300190000000001026019000000000110004c000003ee0000613d00000001020003670000000401200370000000000101043b000002250310009c000003ee0000213d0000002402200370000000000202043b000002250320009c000003ee0000213d000000000001042d000000000100001900000000020000190815026b0000040f000000000110004c000003f40000613d000000000001042d000000400100003900000000010104330000004402100039000002270300004100000000003204350000002402100039000000110300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000064020000390815026b0000040f0002000000000002000200000001001d0000000001000019081508130000040f000100000001001d00000225011001970000000002000411000000000112004b00000000010000190000000101006039081503f10000040f00000002010000290000022501100198000004150000c13d00000001010000290000020a011001970000000002000019081508110000040f0000000200000005000000000001042d00060000000000020000004001000039000100000001001d0000000001010433000400000001001d0000000501000039000600000001001d081508130000040f000000010210018f00000001031002700000007f0430018f000000000520004c000000000503001900000000050460190000001f0350008c00000000030000190000000103002039000000010330018f000000000332004b000004590000c13d000000040400002900000000005404350000002003400039000000000220004c000004440000c13d000001000200008a000000000121016f000000000013043500000020030000390000003f01300039000000200200008a000000000221016f0000000001420019000000000221004b00000000020000190000000102004039000002090310009c000004610000213d0000000102200190000004610000c13d0000000102000029000000000012043500000000010400190000000600000005000000000001042d000200000003001d0000000601000029000000000010043500000229010000410000000003000019000300000005001d000000000253004b000004340000813d000600000003001d000500000001001d081508130000040f0000000603000029000000030500002900000004040000290000000202000029000000000223001900000000001204350000000501000029000000200330003900000001011000390000044a0000013d0000020d010000410000000000100435000000220100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f0000020d010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f00060000000000020000004001000039000100000001001d0000000001010433000400000001001d0000000601000039000600000001001d081508130000040f000000010210018f00000001031002700000007f0430018f000000000520004c000000000503001900000000050460190000001f0350008c00000000030000190000000103002039000000010330018f000000000332004b000004ab0000c13d000000040400002900000000005404350000002003400039000000000220004c000004960000c13d000001000200008a000000000121016f000000000013043500000020030000390000003f01300039000000200200008a000000000221016f0000000001420019000000000221004b00000000020000190000000102004039000002090310009c000004b30000213d0000000102200190000004b30000c13d0000000102000029000000000012043500000000010400190000000600000005000000000001042d000200000003001d000000060100002900000000001004350000022a010000410000000003000019000300000005001d000000000253004b000004860000813d000600000003001d000500000001001d081508130000040f0000000603000029000000030500002900000004040000290000000202000029000000000223001900000000001204350000000501000029000000200330003900000001011000390000049c0000013d0000020d010000410000000000100435000000220100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f0000020d010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f00000225011001970000000000100435000000030100003900000020020000390000000000120435000000400200003900000000010000190815024c0000040f000000000001042d0000022502200197000000000020043500000020020000390000000000120435000000400200003900000000010000190815024c0000040f000000000001042d00000225011001970000000000100435000000020100003900000020020000390000000000120435000000400200003900000000010000190815024c0000040f081508130000040f000000000001042d000000000302001900000000020100190000000001000411081506340000040f000000000001042d000000000302001900000000020100190000000001000411081507aa0000040f000000000001042d0005000000000002000200000003001d000500000001001d081506340000040f00000005010000290000022501100197000000000010043500000003010000390000002002000039000400000002001d00000000001204350000004002000039000300000002001d00000000010000190815024c0000040f0000000002000411000100000002001d0000022502200197000000000020043500000004020000290000000000120435000000000100001900000003020000290815024c0000040f081508130000040f0000000203000029000000000231004b000005020000413d000000000331004900000005010000290000000102000029081507aa0000040f0000000500000005000000000001042d0000000301000029000000000101043300000064021000390000022b03000041000000000032043500000044021000390000022c0300004100000000003204350000002402100039000000280300003900000000003204350000022802000041000000000021043500000004021000390000000403000029000000000032043500000084020000390815026b0000040f0005000000000002000400000002001d000500000001001d0000000001000411000100000001001d000000000010043500000003010000390000002002000039000300000002001d00000000001204350000004002000039000200000002001d00000000010000190815024c0000040f00000005020000290000022502200197000000000020043500000003020000290000000000120435000000000100001900000002020000290815024c0000040f081508130000040f0000000403000029000000010200008a000000000223013f000000000221004b000005360000213d000000000331001900000001010000290000000502000029081507aa0000040f0000000500000005000000000001042d0000020d010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f0002000000000002000200000001001d0000000001000019081508130000040f00000225011001970000000002000411000100000002001d000000000112004b00000000010000190000000101006039081503f10000040f00000001010000290000000202000029081506c80000040f0000000200000005000000000001042d0005000000000002000200000002001d000500000001001d0000000001000411000100000001001d000000000010043500000003010000390000002002000039000400000002001d00000000001204350000004002000039000300000002001d00000000010000190815024c0000040f00000005020000290000022502200197000000000020043500000004020000290000000000120435000000000100001900000003020000290815024c0000040f081508130000040f0000000203000029000000000231004b0000056e0000413d000000000331004900000001010000290000000502000029081507aa0000040f0000000500000005000000000001042d0000000301000029000000000101043300000064021000390000022d03000041000000000032043500000044021000390000022e0300004100000000003204350000002402100039000000250300003900000000003204350000022802000041000000000021043500000004021000390000000403000029000000000032043500000084020000390815026b0000040f0006000000000002000600000002001d000100000001001d0000022501100197000500000001001d000000000010043500000003010000390000002002000039000400000002001d00000000001204350000004002000039000300000002001d00000000010000190815024c0000040f0000000002000411000200000002001d0000022502200197000000000020043500000004020000290000000000120435000000000100001900000003020000290815024c0000040f081508130000040f00000002040000290000000502000029000000000224004b0000059f0000613d0000000602000029000000000221004b000005fb0000413d0000000602000029000000000321004900000001010000290000000002040019081507aa0000040f0000000504000029000000000140004c0000060d0000613d000000000040043500000002030000390000000401000029000300000003001d000000000031043500000040020000390000000001000019000100000002001d0815024c0000040f081508130000040f00000000020100190000000601000029000200000002001d000000000112004b0000061f0000413d0000000501000029000000000010043500000004010000290000000302000029000000000021043500000040020000390000000001000019000400000002001d0815024c0000040f000000060300002900000002020000290000000002320049000000000301001900000000010200190000000002030019081508110000040f0000000401000039000300000001001d081508130000040f0000000602000029000000000221004b000005f30000413d000000060200002900000000012100490000000402000039081508110000040f0000000801000039081508130000040f000000010200008a0000000603000029000000000223013f000000000221004b000005f30000213d000000060200002900000000012100190000000802000039081508110000040f000000040100002900000000010104330000000602000029000000000021043500000207020000410000000003000414000002070430009c0000000003028019000002070410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d020000390000000303000039000002300400004100000005050000290000000006000019081508070000040f0000000101200190000006310000613d0000000600000005000000000001042d0000020d010000410000000000100435000000110100003900000003020000290000000000120435000000240200003900000000010000190815026b0000040f000000030100002900000000010104330000006402100039000002350300004100000000003204350000004402100039000002360300004100000000003204350000002402100039000000240300003900000000003204350000022802000041000000000021043500000004021000390000000403000029000000000032043500000084020000390815026b0000040f000000030100002900000000010104330000006402100039000002330300004100000000003204350000004402100039000002340300004100000000003204350000002402100039000000210300003900000000003204350000022802000041000000000021043500000004021000390000000403000029000000000032043500000084020000390815026b0000040f000000010100002900000000010104330000006402100039000002310300004100000000003204350000004402100039000002320300004100000000003204350000002402100039000000220300003900000000003204350000022802000041000000000021043500000004021000390000000403000029000000000032043500000084020000390815026b0000040f000000000100001900000000020000190815026b0000040f00070000000000020000022504100197000000000140004c000006870000613d000700000003001d0000022501200197000500000001001d000000000110004c000006990000613d000000000040043500000002020000390000002001000039000600000001001d000400000002001d000000000021043500000040020000390000000001000019000200000002001d000300000004001d0815024c0000040f081508130000040f0000000702000029000100000001001d000000000121004b000006ab0000413d000000030100002900000000001004350000000601000029000000040200002900000000002104350000004002000039000200000002001d00000000010000190815024c0000040f000000070200002900000001030000290000000002230049000000000301001900000000010200190000000002030019081508110000040f00000005010000290000000000100435000000040100002900000006020000290000000000120435000000000100001900000002020000290815024c0000040f000600000001001d081508130000040f000000010200008a0000000703000029000000000223013f000000000221004b000006bd0000213d00000000013100190000000602000029081508110000040f000000020100002900000000010104330000000702000029000000000021043500000207020000410000000003000414000002070430009c0000000003028019000002070410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d020000390000000303000039000002300400004100000003050000290000000506000029081508070000040f0000000101200190000006c50000613d0000000700000005000000000001042d0000004001000039000000000101043300000064021000390000023b03000041000000000032043500000044021000390000023c0300004100000000003204350000002402100039000000250300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000084020000390815026b0000040f0000004001000039000000000101043300000064021000390000023903000041000000000032043500000044021000390000023a0300004100000000003204350000002402100039000000230300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000084020000390815026b0000040f000000020100002900000000010104330000006402100039000002370300004100000000003204350000004402100039000002380300004100000000003204350000002402100039000000260300003900000000003204350000022802000041000000000021043500000004021000390000000603000029000000000032043500000084020000390815026b0000040f0000020d010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f000000000100001900000000020000190815026b0000040f0006000000000002000600000002001d0000022501100197000500000001001d000000000110004c0000070e0000613d0000000401000039000100000001001d081508130000040f000000010200008a0000000603000029000000000223013f000400000002001d000000000221004b0000000502000029000007060000213d000000060200002900000000012100190000000402000039081508110000040f0000000501000029000000000010043500000002010000390000002002000039000000000012043500000040020000390000000001000019000300000002001d0815024c0000040f000200000001001d081508130000040f0000000402000029000000000221004b000007060000213d000000060200002900000000012100190000000202000029081508110000040f000000030100002900000000010104330000000602000029000000000021043500000207020000410000000003000414000002070430009c0000000003028019000002070410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d020000390000000303000039000002300400004100000000050000190000000506000029081508070000040f00000001012001900000071d0000613d0000000600000005000000000001042d0000020d010000410000000000100435000000110100003900000001020000290000000000120435000000240200003900000000010000190815026b0000040f0000004001000039000000000101043300000044021000390000023d03000041000000000032043500000024021000390000001f0300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000064020000390815026b0000040f000000000100001900000000020000190815026b0000040f0002000000000002000200000002001d000100000001001d0000000701000039081508130000040f00000225011001970000000002000411000000000112004b000007390000c13d0000000101000039081508130000040f000000010200008a0000000203000029000000000223013f000000000221004b000007480000213d000000020200002900000000012100190000000102000039081508110000040f00000001010000290000000202000029081506c80000040f0000000200000005000000000001042d0000004001000039000000000101043300000044021000390000023e03000041000000000032043500000024021000390000000b0300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000064020000390815026b0000040f0000020d010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f0002000000000002000200000002001d000100000001001d0000000901000039081508130000040f00000225011001970000000002000411000000000112004b000007690000c13d0000000101000039081508130000040f000000010200008a0000000203000029000000000223013f000000000221004b000007780000213d000000020200002900000000012100190000000102000039081508110000040f00000001010000290000000202000029081506c80000040f0000000200000005000000000001042d0000004001000039000000000101043300000044021000390000023f0300004100000000003204350000002402100039000000080300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000064020000390815026b0000040f0000020d010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000190815026b0000040f0002000000000002000200000001001d0000000001000019081508130000040f00000225011001970000000002000411000000000112004b00000000010000190000000101006039081503f10000040f0000000701000039000100000001001d081508130000040f000000020200002900000225022001970000020a01100197000000000121019f0000000102000029081508110000040f0000000200000005000000000001042d0002000000000002000200000001001d0000000001000019081508130000040f00000225011001970000000002000411000000000112004b00000000010000190000000101006039081503f10000040f0000000901000039000100000001001d081508130000040f000000020200002900000225022001970000020a01100197000000000121019f0000000102000029081508110000040f0000000200000005000000000001042d00060000000000020000022504100197000000000140004c000007e00000613d000500000003001d0000022501200197000600000001001d000000000110004c000007f20000613d00000000004004350000000301000039000300000001001d0000002002000039000100000002001d00000000001204350000004002000039000400000002001d0000000001000019000200000004001d0815024c0000040f0000000602000029000000000020043500000001020000290000000000120435000000000100001900000004020000290815024c0000040f00000000020100190000000501000029081508110000040f000000040100002900000000010104330000000502000029000000000021043500000207020000410000000003000414000002070430009c0000000003028019000002070410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d020000390000024004000041000000030300002900000002050000290000000606000029081508070000040f0000000101200190000008040000613d0000000600000005000000000001042d000000400100003900000000010104330000006402100039000002430300004100000000003204350000004402100039000002440300004100000000003204350000002402100039000000240300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000084020000390815026b0000040f000000400100003900000000010104330000006402100039000002410300004100000000003204350000004402100039000002420300004100000000003204350000002402100039000000220300003900000000003204350000022802000041000000000021043500000004021000390000002003000039000000000032043500000084020000390815026b0000040f000000000100001900000000020000190815026b0000040f0000080a002104210000000102000039000000000001042d0000000002000019000000000001042d0000080f002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000081500000432000008160001042e0000081700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000002000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000021b72ec70000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002875a46d00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000004917db660000000000000000000000000000000000000000000000000000000055432fb70000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000009185e0300000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000aa7a0dc300000000000000000000000000000000000000000000000000000000cab8eb8100000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000ec8797a10000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff020000000000000000000000000000000000000000000000000000000000000075736572206e6f74206973206f776e657200000000000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f6c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732061207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573616e63650000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f20616445524332303a206d696e7420746f20746865207a65726f2061646472657373006e6f74206661726d4c69620000000000000000000000000000000000000000006e6f74206661726d0000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005535041434500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055350414345000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): SPACE
Arg [1] : symbol_ (string): SPACE
-----Encoded View---------------
[ 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.